1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Matthias Geiger <werdahias@riseup.net>
Date: Tue, 7 Nov 2023 15:54:49 +0100
Subject: Relax dependencies
Forwarded: not-needed
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index f422688..378a10c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ once_cell = "1.21.3"
tokio = { version = "1.44.2", features = ["rt", "macros", "rt-multi-thread", "time"] }
chrono = "0.4.41"
# A newer version is available, but that requires backend updates.
-chrono-tz = "0.8"
+chrono-tz = ">= 0.8, < 1"
log = "0.4.27"
env_logger = "0.11.8"
|