22 lines
596 B
TOML
22 lines
596 B
TOML
[package]
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "prvng-cli"
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
description = "Fast Unix-socket CLI query daemon for provisioning — no Nushell startup cost"
|
|
|
|
[[bin]]
|
|
name = "prvng-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
notify = { workspace = true }
|
|
anyhow = { workspace = true }
|