File size: 449 Bytes
3374e90 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [package]
name = "bex-cli"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "bex"
path = "src/main.rs"
[dependencies]
bex-core = { workspace = true }
bex-types = { workspace = true }
bex-pkg = { workspace = true }
bex-db = { workspace = true }
clap = { version = "4", features = ["derive"] }
tokio = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tracing-subscriber = "0.3"
anyhow = { workspace = true }
|