From 3c74bf5c7a0e78e26d907335ffa4faefe81a7a8a Mon Sep 17 00:00:00 2001 From: Ryan Green Date: Wed, 26 Feb 2025 11:31:29 -0330 Subject: [PATCH] Pin chrono version --- Cargo.toml | 2 +- python/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 90a2cff6..887c17d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ arrow-schema = "51.0" arrow-arith = "51.0" arrow-cast = "51.0" async-trait = "0" -chrono = "0.4.35" +chrono = "=0.4.39" datafusion-physical-plan = "37.1" half = { "version" = "=2.4.1", default-features = false, features = [ "num-traits", diff --git a/python/Cargo.toml b/python/Cargo.toml index 50346b4f..b74dd2f9 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -20,6 +20,7 @@ env_logger = "0.10" pyo3 = { version = "0.20", features = ["extension-module", "abi3-py38"] } pyo3-asyncio = { version = "0.20", features = ["attributes", "tokio-runtime"] } base64ct = "=1.6.0" # workaround for https://github.com/RustCrypto/formats/issues/1684 +chrono = "=0.4.39" # Prevent dynamic linking of lzma, which comes from datafusion lzma-sys = { version = "*", features = ["static"] }