1
0
dust/dust-cli/Cargo.toml

23 lines
475 B
TOML
Raw Normal View History

2024-03-20 08:42:13 +00:00
[package]
2024-11-18 01:32:53 +00:00
name = "dust-cli"
description = "The Dust Programming Language CLI"
2024-03-20 08:42:13 +00:00
version = "0.1.0"
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
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-08-09 00:58:56 +00:00
clap = { version = "4.5.14", features = ["derive"] }
2024-09-10 22:19:59 +00:00
colored = "2.1.0"
2024-08-09 00:58:56 +00:00
dust-lang = { path = "../dust-lang" }
2024-08-20 04:15:19 +00:00
env_logger = "0.11.5"
2024-09-10 22:19:59 +00:00
log = "0.4.22"
2024-11-18 01:32:53 +00:00
postcard = "1.0.10"
serde_json = "1.0.133"