From 4c00de4057b094c15b4242766e0e2432fb36a2f5 Mon Sep 17 00:00:00 2001 From: Stephen Carman Date: Fri, 28 Feb 2025 18:02:04 -0500 Subject: [PATCH] pin chrono version to fix arrow compilation failure (#719) ## What changes are proposed in this pull request? Current chrono 0.4.40 breaks building arrow, pin chrono to a prior version that does not break arrow. ## How was this change tested? CI/CD --------- Co-authored-by: Zach Schuermann --- kernel/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 886ba3c60..b6c6afbb0 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -36,7 +36,7 @@ pre-release-hook = [ [dependencies] bytes = "1.7" -chrono = { version = "0.4" } +chrono = "=0.4.39" fix-hidden-lifetime-bug = "0.2" indexmap = "2.5.0" itertools = "0.13"