From c32965c9b4b66be21b08f25c2a2e28ce5dd45df3 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 4 Mar 2025 09:25:46 +0100 Subject: [PATCH] fix: Use chrono >= 0.4.34, < 0.4.40 to avoid breaking --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 375a4efac551..811ce0b388aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -93,4 +93,4 @@ arrow-select = { version = "53.3.0", path = "./arrow-select" } arrow-string = { version = "53.3.0", path = "./arrow-string" } parquet = { version = "53.3.0", path = "./parquet", default-features = false } -chrono = { version = "0.4.34", default-features = false, features = ["clock"] } +chrono = { version = ">= 0.4.34, < 0.4.40", default-features = false, features = ["clock"] }