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 = [ dependencies = [
"arbitrary-value", "arbitrary-value",
"chrono", "chrono",
"chrono-tz",
"derive_more", "derive_more",
"emitter-and-signal", "emitter-and-signal",
"once_cell", "once_cell",
@@ -1691,8 +1690,6 @@ dependencies = [
"arc-swap", "arc-swap",
"async-gate", "async-gate",
"axum", "axum",
"chrono",
"chrono-tz",
"deranged", "deranged",
"driver-kasa", "driver-kasa",
"emitter-and-signal", "emitter-and-signal",

View File

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

View File

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