2026-01-08 21:32:59 +00:00
|
|
|
[package]
|
|
|
|
|
authors.workspace = true
|
2026-01-12 05:07:30 +00:00
|
|
|
edition.workspace = true
|
2026-01-08 21:32:59 +00:00
|
|
|
license.workspace = true
|
2026-02-04 01:02:18 +00:00
|
|
|
name = "daemon"
|
2026-01-08 21:32:59 +00:00
|
|
|
repository.workspace = true
|
2026-01-12 05:07:30 +00:00
|
|
|
version.workspace = true
|
2026-01-08 21:32:59 +00:00
|
|
|
|
2026-02-04 01:02:18 +00:00
|
|
|
[[bin]]
|
|
|
|
|
name = "provisioning-daemon"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
2026-01-08 21:32:59 +00:00
|
|
|
[dependencies]
|
|
|
|
|
# Core daemon library from prov-ecosystem
|
|
|
|
|
daemon-cli = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Async runtime and networking
|
|
|
|
|
axum = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tower = { workspace = true }
|
|
|
|
|
tower-http = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Serialization
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
toml = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Platform configuration
|
2026-02-04 01:02:18 +00:00
|
|
|
platform-config = { workspace = true }
|
2026-01-08 21:32:59 +00:00
|
|
|
|
|
|
|
|
# Error handling
|
|
|
|
|
anyhow = { workspace = true }
|
2026-01-12 05:07:30 +00:00
|
|
|
thiserror = { workspace = true }
|
2026-01-08 21:32:59 +00:00
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# CLI
|
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
|
|
|
|
|
|
# Utilities
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
dirs = { workspace = true }
|
2026-01-12 05:07:30 +00:00
|
|
|
uuid = { workspace = true }
|