Due to changes made in mlua the new scheduler is much simpler. It also had no real business being part of the device manager, so it has now been moved to be part of the returned config.
23 lines
600 B
TOML
23 lines
600 B
TOML
[package]
|
|
name = "automation_lib"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
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 }
|