2025-02-11 23:15:24 -08:00
|
|
|
[package]
|
|
|
|
|
name = "kordophoned"
|
2025-08-08 11:55:47 -07:00
|
|
|
version = "1.0.1"
|
2025-02-11 23:15:24 -08:00
|
|
|
edition = "2021"
|
2025-08-08 11:55:47 -07:00
|
|
|
license = "GPL-3.0"
|
|
|
|
|
description = "Client daemon for the Kordophone chat protocol"
|
2025-02-11 23:15:24 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-25 16:54:37 -07:00
|
|
|
anyhow = "1.0.98"
|
2025-04-27 14:01:19 -07:00
|
|
|
async-trait = "0.1.88"
|
2025-06-06 16:28:29 -07:00
|
|
|
chrono = "0.4.38"
|
2025-04-25 16:54:37 -07:00
|
|
|
directories = "6.0.0"
|
2025-02-11 23:15:24 -08:00
|
|
|
env_logger = "0.11.6"
|
2025-04-25 21:42:29 -07:00
|
|
|
futures-util = "0.3.31"
|
2025-05-03 01:06:50 -07:00
|
|
|
keyring = { version = "3.6.2", features = ["sync-secret-service"] }
|
2025-02-11 23:15:24 -08:00
|
|
|
kordophone = { path = "../kordophone" }
|
2025-04-25 16:54:37 -07:00
|
|
|
kordophone-db = { path = "../kordophone-db" }
|
2025-02-11 23:15:24 -08:00
|
|
|
log = "0.4.25"
|
2025-05-26 16:52:38 -07:00
|
|
|
serde_json = "1.0"
|
2025-04-25 18:02:54 -07:00
|
|
|
thiserror = "2.0.12"
|
2025-02-11 23:15:24 -08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2025-05-02 14:22:43 -07:00
|
|
|
tokio-condvar = "0.3.0"
|
|
|
|
|
uuid = "1.16.0"
|
2025-06-26 16:23:53 -07:00
|
|
|
once_cell = "1.19.0"
|
2025-02-11 23:15:24 -08:00
|
|
|
|
2025-07-31 19:16:44 -07:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
# D-Bus dependencies only on Linux
|
|
|
|
|
dbus = { version = "0.9.7", features = ["futures"] }
|
|
|
|
|
dbus-crossroads = "0.5.2"
|
|
|
|
|
dbus-tokio = "0.7.6"
|
|
|
|
|
dbus-tree = "0.9.2"
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.build-dependencies]
|
|
|
|
|
# D-Bus codegen only on Linux
|
2025-02-11 23:15:24 -08:00
|
|
|
dbus-codegen = "0.10.0"
|
|
|
|
|
dbus-crossroads = "0.5.1"
|
2025-08-08 11:55:47 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.generate-rpm]
|
|
|
|
|
assets = [
|
|
|
|
|
{ source = "../target/release/kordophoned", dest = "/usr/libexec/kordophoned", mode = "755" },
|
|
|
|
|
{ source = "../target/release/kpcli", dest = "/usr/bin/kpcli", mode = "755" },
|
|
|
|
|
{ source = "include/net.buzzert.kordophonecd.service", dest = "/usr/share/dbus-1/services/net.buzzert.kordophonecd.service", mode = "644" },
|
|
|
|
|
]
|