This commit is contained in:
2024-07-08 22:38:55 +02:00
parent 9aa16e3ef8
commit 758500a071
25 changed files with 632 additions and 690 deletions

View File

@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[workspace]
members = ["google-home", "automation_macro", "automation_cast"]
members = ["automation_macro", "automation_cast", "google_home/google_home", "google_home/google_home_macro"]
[dependencies]
@@ -13,7 +13,7 @@ automation_cast = { path = "./automation_cast/" }
rumqttc = "0.18"
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
google-home = { path = "./google-home" }
google_home = { path = "./google_home/google_home/" }
paste = "1.0.10"
tokio = { version = "1", features = ["rt-multi-thread"] }
dotenvy = "0.15.0"
@@ -43,7 +43,14 @@ enum_dispatch = "0.3.12"
indexmap = { version = "2.0.0", features = ["serde"] }
serde_yaml = "0.9.27"
tokio-cron-scheduler = "0.9.4"
mlua = { version = "0.9.7", features = ["lua54", "vendored", "macros", "serialize", "async", "send"] }
mlua = { version = "0.9.7", features = [
"lua54",
"vendored",
"macros",
"serialize",
"async",
"send",
] }
once_cell = "1.19.0"
hostname = "0.4.0"
tokio-util = { version = "0.7.11", features = ["full"] }