From d1daa0bc01f809ab45c7ca8189ecee381ff42396 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 22 Apr 2025 01:51:45 -0400 Subject: [PATCH] chore(entrypoint): no longer depend on `chrono` and `chrono-tz` --- Cargo.lock | 2 -- entrypoint/Cargo.toml | 2 -- 2 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1eda03d..f6d71e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1691,8 +1691,6 @@ dependencies = [ "arc-swap", "async-gate", "axum", - "chrono", - "chrono-tz", "deranged", "driver-kasa", "emitter-and-signal", diff --git a/entrypoint/Cargo.toml b/entrypoint/Cargo.toml index d70e1b7..6da1ef4 100644 --- a/entrypoint/Cargo.toml +++ b/entrypoint/Cargo.toml @@ -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" }