crates/signald/Cargo.toml
17 lines · 692 bytes
1[package]
2name = "signald"
3version.workspace = true
4edition.workspace = true
5license.workspace = true
6description = "The ambient-companions signal-collection daemon: owns all collectors, normalizes to the shared schema, and publishes a pub/sub stream over a local Unix socket. One backend, five faces."
7
8[[bin]]
9name = "signald"
10path = "src/main.rs"
11
12[dependencies]
13signal-schema = { path = "../signal-schema" }
14# History store (spec §1.3): SQLite in WAL mode. `bundled` compiles SQLite in-
15# tree so there is no system-library dependency. This is the one new dependency
16# added in v0.2; signal-schema stays dependency-free by design.
17rusqlite = { version = "0.40", features = ["bundled"] }