Skip to content

Commit 8834839

Browse files
committed
prevent chrono update
1 parent 7ea09de commit 8834839

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,12 @@ byteorder = "1"
142142
bytes = "1.6"
143143
cam-geom = { version = "0.15", features = ["serde-serialize"] }
144144
camino = "1.1.9"
145-
chrono = { version = "0.4.38", features = ["serde"] }
145+
# chrono 0.4.40 introduced Datelike::quarter which conflicts with arrow-arith
146+
# 53.4.0, specifically its ChronoDateExt::quarter. Here we pin chrono to prevent
147+
# updating to chrono 0.4.40. We can remove this pin when
148+
# https://github.com/apache/arrow-rs/pull/7198 is available. (Theoretically,
149+
# Cargo.lock is the preferred way to pin, but that carries other problems.)
150+
chrono = { version = "0.4,<0.4.40", features = ["serde"] }
146151
clap = { version = "4.4.3", features = ["derive", "env", "string"] }
147152
configure = "0.1.1"
148153
cookie = "0.18.0"

0 commit comments

Comments
 (0)