done, for now

This commit is contained in:
2025-08-12 17:39:37 -05:00
commit 95df8adc12
4 changed files with 2587 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "notification-pusher-rust"
version = "0.1.0"
edition = "2021"
[dependencies]
rumqttc = "0.19" # MQTT client
tokio = { version = "1", features = ["full"] } # async runtime
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.7"
reqwest = { version = "0.12.23", features = ["json", "rustls-tls"] }
log = "0.4"
tokio-stream = "0.1"
simple_logger = "5.0.0"