26 lines
535 B
TOML
26 lines
535 B
TOML
[package]
|
|
name = "node_notifier_examples"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "basic_monitoring"
|
|
path = "basic_monitoring.rs"
|
|
|
|
[[example]]
|
|
name = "custom_thresholds"
|
|
path = "custom_thresholds.rs"
|
|
|
|
[[example]]
|
|
name = "discord_notifications"
|
|
path = "discord_notifications.rs"
|
|
|
|
[[example]]
|
|
name = "continuous_monitoring"
|
|
path = "continuous_monitoring.rs"
|
|
|
|
[dependencies]
|
|
discord_client = { path = "../discord_client" }
|
|
system_monitor = { path = "../system_monitor" }
|
|
chrono = { version = "0.4", features = ["serde"] }
|