33 lines
961 B
TOML
33 lines
961 B
TOML
[package]
|
|
name = "polyscribe-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "polyscribe"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = { workspace = true }
|
|
clap_mangen = { workspace = true }
|
|
directories = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "process", "fs"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
|
|
which = { workspace = true }
|
|
|
|
polyscribe-core = { path = "../polyscribe-core" }
|
|
polyscribe-host = { path = "../polyscribe-host" }
|
|
polyscribe-protocol = { path = "../polyscribe-protocol" }
|
|
|
|
[features]
|
|
# Optional GPU-specific flags can be forwarded down to core/host if needed
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = { workspace = true }
|