Probably need to make the locking mechanism more granular. Only lock the database during db writes, see if we can do multiple readers and a single writer. Otherwise, the daemon will not be able to service requests while an event is being handled, which is not good.
24 lines
491 B
TOML
24 lines
491 B
TOML
[package]
|
|
name = "kordophoned"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
dbus = "0.9.7"
|
|
dbus-crossroads = "0.5.2"
|
|
dbus-tokio = "0.7.6"
|
|
dbus-tree = "0.9.2"
|
|
directories = "6.0.0"
|
|
env_logger = "0.11.6"
|
|
futures-util = "0.3.31"
|
|
kordophone = { path = "../kordophone" }
|
|
kordophone-db = { path = "../kordophone-db" }
|
|
log = "0.4.25"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[build-dependencies]
|
|
dbus-codegen = "0.10.0"
|
|
dbus-crossroads = "0.5.1"
|