aw-lights/mqtt/Cargo.toml

15 lines
370 B
TOML
Raw Normal View History

2024-04-07 17:15:09 -04:00
[package]
name = "mqtt"
version = "0.1.0"
edition = "2021"
[dependencies]
common = { path = "../common" }
rumqttc = "0.24.0"
2024-04-08 23:15:56 -04:00
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2024-04-07 17:15:09 -04:00
tracing = "0.1.37"
2024-04-12 23:41:35 -04:00
homeassistant-mqtt-discovery = { path = "../homeassistant-mqtt-discovery/" }
clap = { version = "4.5.4", features = ["derive"] }
2024-04-21 13:16:26 -04:00
anyhow = "1.0.82"