42 lines
940 B
TOML
42 lines
940 B
TOML
|
|
[package]
|
||
|
|
name = "provisioning-daemon"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
|
||
|
|
[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
|
||
|
|
platform-config = { path = "../platform-config" }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
|
||
|
|
# CLI
|
||
|
|
clap = { workspace = true, features = ["derive"] }
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
uuid = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
dirs = { workspace = true }
|