2024-11-09 17:35:39 -08:00
|
|
|
[package]
|
|
|
|
|
name = "kpcli"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-11-10 19:40:39 -08:00
|
|
|
anyhow = "1.0.93"
|
2024-11-09 17:35:39 -08:00
|
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
2025-02-12 00:10:33 -08:00
|
|
|
dbus = "0.9.7"
|
|
|
|
|
dbus-tree = "0.9.2"
|
2024-11-10 19:40:39 -08:00
|
|
|
dotenv = "0.15.0"
|
2024-11-09 17:35:39 -08:00
|
|
|
kordophone = { path = "../kordophone" }
|
2025-01-08 13:32:55 -08:00
|
|
|
kordophone-db = { path = "../kordophone-db" }
|
2024-11-10 19:40:39 -08:00
|
|
|
log = "0.4.22"
|
|
|
|
|
pretty = { version = "0.12.3", features = ["termcolor"] }
|
2025-04-28 16:00:04 -07:00
|
|
|
prettytable = "0.10.0"
|
2025-01-08 13:32:55 -08:00
|
|
|
time = "0.3.37"
|
2024-11-10 19:40:39 -08:00
|
|
|
tokio = "1.41.1"
|
2025-02-12 00:10:33 -08:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
dbus-codegen = "0.10.0"
|