39 lines
869 B
TOML
39 lines
869 B
TOML
[package]
|
|
name = "damocles-daemon"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
module_name_repetitions = "allow"
|
|
|
|
[dependencies]
|
|
matrix-sdk = { version = "0.14", features = ["e2e-encryption", "sqlite", "markdown"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1"
|
|
futures-util = "0.3"
|
|
rmcp = { version = "1", features = ["server", "macros", "transport-io"] }
|
|
|
|
[[bin]]
|
|
name = "damocles-daemon"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "send"
|
|
path = "src/bin/send.rs"
|
|
|
|
[[bin]]
|
|
name = "verify"
|
|
path = "src/bin/verify.rs"
|
|
|
|
[[bin]]
|
|
name = "damocles-mcp"
|
|
path = "src/bin/mcp.rs"
|
|
|
|
[[bin]]
|
|
name = "bootstrap-cross-signing"
|
|
path = "src/bin/bootstrap_cross_signing.rs"
|