uv/crates/puffin-cli/Cargo.toml

25 lines
731 B
TOML

[package]
name = "puffin-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
puffin-client = { path = "../puffin-client" }
puffin-interpreter = { path = "../puffin-interpreter" }
puffin-requirements = { path = "../puffin-requirements" }
anyhow = { version = "1.0.75" }
clap = { version = "4.4.6", features = ["derive"] }
colored = { version = "2.0.4" }
memchr = { version = "2.6.4" }
async-std = { version = "1.12.0", features = [
"attributes",
"tokio1",
"unstable",
] }
futures = { version = "0.3.28" }
pep508_rs = { version = "0.2.3" }
pep440_rs = { version = "0.3.12" }
tracing = { version = "0.1.37" }
tracing-tree = { version = "0.2.5" }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }