1
0
dust/dust-cli/Cargo.toml

29 lines
583 B
TOML
Raw Permalink Normal View History

2024-03-20 08:42:13 +00:00
[package]
2024-11-18 01:32:53 +00:00
name = "dust-cli"
2024-12-18 13:49:45 +00:00
description = "Command line interface for the Dust programming language"
2024-11-18 01:32:53 +00:00
authors = ["Jeff Anderson"]
2024-03-20 08:42:13 +00:00
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
2024-03-20 08:42:13 +00:00
2024-11-18 01:32:53 +00:00
[[bin]]
name = "dust"
path = "src/main.rs"
2024-03-20 08:42:13 +00:00
[dependencies]
2024-12-18 13:49:45 +00:00
clap = { version = "4.5.14", features = [
"cargo",
"color",
"derive",
"help",
"wrap_help",
] }
2024-12-18 11:00:42 +00:00
color-print = "0.3.7"
2024-08-09 00:58:56 +00:00
dust-lang = { path = "../dust-lang" }
2024-11-18 01:32:53 +00:00
postcard = "1.0.10"
serde_json = "1.0.133"
2024-12-21 18:20:57 +00:00
tracing = "0.1.41"
tracing-subscriber = "0.3.19"