42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "kordophoned"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
async-trait = "0.1.88"
|
|
chrono = "0.4.38"
|
|
directories = "6.0.0"
|
|
env_logger = "0.11.6"
|
|
futures-util = "0.3.31"
|
|
keyring = { version = "3.6.2", features = ["sync-secret-service"] }
|
|
kordophone = { path = "../kordophone" }
|
|
kordophone-db = { path = "../kordophone-db" }
|
|
log = "0.4.25"
|
|
serde_json = "1.0"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-condvar = "0.3.0"
|
|
uuid = "1.16.0"
|
|
once_cell = "1.19.0"
|
|
|
|
# D-Bus dependencies only on Linux
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
dbus = { version = "0.9.7", features = ["futures"] }
|
|
dbus-crossroads = "0.5.2"
|
|
dbus-tokio = "0.7.6"
|
|
dbus-tree = "0.9.2"
|
|
|
|
# D-Bus codegen only on Linux
|
|
[target.'cfg(target_os = "linux")'.build-dependencies]
|
|
dbus-codegen = "0.10.0"
|
|
dbus-crossroads = "0.5.1"
|
|
|
|
# XPC (libxpc) interface for macOS IPC
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
futures-preview = "=0.2.2"
|
|
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" }
|
|
serde = { version = "1.0", features = ["derive"] }
|