Files
2026-02-21 08:54:28 +08:00

25 lines
680 B
TOML

[package]
name = "health-daemon"
description = "Background daemon service for Health Guardian"
version.workspace = true
edition.workspace = true
[[bin]]
name = "hguard-daemon"
path = "src/main.rs"
[dependencies]
health-core = { path = "../health-core" }
tokio = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
dirs = { workspace = true }
clap = { workspace = true }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.27", features = ["process", "signal"] }
[target.'cfg(windows)'.dependencies]
windows-service = "0.6"