Initial commit: MQTT publisher with rumqttc

This commit is contained in:
Ollo
2026-02-27 18:55:58 +01:00
commit 3d3585501e
5 changed files with 790 additions and 0 deletions

10
Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "mqtt-publisher"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
rumqttc = "0.24"
serde = { version = "1", features = ["derive"] }
serde_json = "1"