1
0
dust/dust-cli/Cargo.toml
2024-11-17 20:32:53 -05:00

23 lines
475 B
TOML

[package]
name = "dust-cli"
description = "The Dust Programming Language CLI"
version = "0.1.0"
authors = ["Jeff Anderson"]
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
[[bin]]
name = "dust"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.14", features = ["derive"] }
colored = "2.1.0"
dust-lang = { path = "../dust-lang" }
env_logger = "0.11.5"
log = "0.4.22"
postcard = "1.0.10"
serde_json = "1.0.133"