Private
Public Access
1
0
Files
Kordophone/core/kpcli/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Permalink Normal View History

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]
anyhow = "1.0.93"
2024-11-09 17:35:39 -08:00
clap = { version = "4.5.20", features = ["derive"] }
dotenv = "0.15.0"
env_logger = "0.11.8"
futures-util = "0.3.31"
2024-11-09 17:35:39 -08:00
kordophone = { path = "../kordophone" }
kordophone-db = { path = "../kordophone-db" }
log = "0.4.22"
pretty = { version = "0.12.3", features = ["termcolor"] }
prettytable = "0.10.0"
serde_json = "1.0"
time = "0.3.37"
tokio = "1.41.1"
async-trait = "0.1.80"
2025-02-12 00:10:33 -08:00
# D-Bus dependencies only on Linux
[target.'cfg(target_os = "linux")'.dependencies]
dbus = "0.9.7"
dbus-tree = "0.9.2"
# D-Bus codegen only on Linux
[target.'cfg(target_os = "linux")'.build-dependencies]
2025-02-12 00:10:33 -08:00
dbus-codegen = "0.10.0"
2025-08-01 12:26:17 -07:00
# XPC (libxpc) interface only on macOS
[target.'cfg(target_os = "macos")'.dependencies]
block = "0.1.6"
futures = "0.3.4"
2025-08-01 12:26:17 -07:00
xpc-connection = { git = "https://github.com/dfrankland/xpc-connection-rs.git", rev = "cd4fb3d", package = "xpc-connection" }
xpc-connection-sys = { git = "https://github.com/dfrankland/xpc-connection-rs.git", rev = "cd4fb3d", package = "xpc-connection-sys" }