Instead the client is now created on the rust side based on the config. Devices that require the mqtt client will now instead need to be constructor using a function. This function receives the mqtt client.
24 lines
640 B
TOML
24 lines
640 B
TOML
[package]
|
|
name = "automation_lib"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
automation_macro = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
automation_cast = { workspace = true }
|
|
bytes = { workspace = true }
|
|
dyn-clone = { workspace = true }
|
|
futures = { workspace = true }
|
|
google_home = { workspace = true }
|
|
hostname = { workspace = true }
|
|
inventory = { workspace = true }
|
|
lua_typed = { workspace = true }
|
|
mlua = { workspace = true }
|
|
rumqttc = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|