1
0
dust/dust-cli/Cargo.toml

23 lines
475 B
TOML
Raw Normal View History

2024-03-20 04:42:13 -04:00
[package]
2024-11-17 20:32:53 -05:00
name = "dust-cli"
description = "The Dust Programming Language CLI"
2024-03-20 04:42:13 -04:00
version = "0.1.0"
2024-11-17 20:32:53 -05:00
authors = ["Jeff Anderson"]
2024-03-20 04:42:13 -04:00
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
2024-11-17 20:32:53 -05:00
[[bin]]
name = "dust"
path = "src/main.rs"
2024-03-20 04:42:13 -04:00
[dependencies]
2024-08-08 20:58:56 -04:00
clap = { version = "4.5.14", features = ["derive"] }
2024-09-10 18:19:59 -04:00
colored = "2.1.0"
2024-08-08 20:58:56 -04:00
dust-lang = { path = "../dust-lang" }
2024-08-20 00:15:19 -04:00
env_logger = "0.11.5"
2024-09-10 18:19:59 -04:00
log = "0.4.22"
2024-11-17 20:32:53 -05:00
postcard = "1.0.10"
serde_json = "1.0.133"