22 lines
510 B
TOML
22 lines
510 B
TOML
[package]
|
|
name = "health-tray"
|
|
description = "System tray UI for Health Guardian"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "hguard-tray"
|
|
path = "src/main.rs"
|
|
|
|
|
|
[build-dependencies]
|
|
embed-resource = "2.4"
|
|
|
|
|
|
[dependencies]
|
|
health-core = { path = "../health-core" }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tray-item = { version = "0.7" } |