* node_notifier doesn't need sysinfo anymore. * implement AlertFormatter in node_notifier and its own file. * implement SystemMonitor, ResourceThreshold, ThresholdViolation, and Severity in system_monitor. * implement parametrized tests for SystemMonitor.
13 lines
307 B
TOML
13 lines
307 B
TOML
[package]
|
|
name = "node-notifier"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
dotenvy = "0.15.7"
|
|
reqwest = { version = "0.12.22", features = ["blocking", "json"] }
|
|
serde = "1.0.219"
|
|
serde_json = "1.0.140"
|
|
discord_client = { path = "../discord_client" }
|
|
system_monitor = { path = "../system_monitor" }
|