1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Sun, 31 Aug 2025 18:47:35 -0400
Subject: Relax dependency on chrono
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index ee1b75a..c834131 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -63,7 +63,7 @@ tower = { version = "0.5.2", features = ["util"] }
hyper-util = "0.1.10"
[build-dependencies]
-chrono = { version = "0.4.41", default-features = false, features = ["clock"] }
+chrono = { version = "0.4.39", default-features = false, features = ["clock"] }
tonic-build = "0.12.3"
[dev-dependencies]
|