14 lines
352 B
TOML
14 lines
352 B
TOML
[package]
|
|
name = "mqtt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
rumqttc = "0.24.0"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = "1.0.115"
|
|
tracing = "0.1.37"
|
|
homeassistant-mqtt-discovery = { path = "../homeassistant-mqtt-discovery/" }
|
|
clap = { version = "4.5.4", features = ["derive"] }
|