Compare commits

...

3 Commits

3 changed files with 1 additions and 7 deletions

3
Cargo.lock generated
View File

@@ -648,7 +648,6 @@ version = "0.1.0"
dependencies = [
"arbitrary-value",
"chrono",
"chrono-tz",
"derive_more",
"emitter-and-signal",
"once_cell",
@@ -1691,8 +1690,6 @@ dependencies = [
"arc-swap",
"async-gate",
"axum",
"chrono",
"chrono-tz",
"deranged",
"driver-kasa",
"emitter-and-signal",

View File

@@ -17,8 +17,6 @@ axum = { version = "0.8.1", default-features = false, features = [
"http1",
"tokio",
] }
chrono = { workspace = true }
chrono-tz = { workspace = true }
deranged = { workspace = true, features = ["serde"] }
driver-kasa = { path = "../driver/kasa" }
emitter-and-signal = { path = "../emitter-and-signal" }

View File

@@ -8,9 +8,8 @@ license = { workspace = true }
tracing = ["dep:tracing"]
[dependencies]
arbitrary-value = { path = "../arbitrary-value" }
arbitrary-value = { path = "../arbitrary-value", features = ["pyo3"] }
chrono = { workspace = true }
chrono-tz = { workspace = true }
derive_more = { workspace = true, features = [
"display",
"from",