26 lines
760 B
TOML
26 lines
760 B
TOML
[package]
|
|
name = "polyscribe-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.99"
|
|
clap = { version = "4.5.44", features = ["derive"] }
|
|
clap_complete = "4.5.57"
|
|
clap_mangen = "0.2.29"
|
|
directories = "5.0.1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.142"
|
|
tokio = { version = "1.47.1", features = ["rt-multi-thread", "macros", "process", "fs"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
which = "6.0.3"
|
|
|
|
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 = []
|