Skip to content

Commit 07a7978

Browse files
authored
Require chrono < 0.4.40 to be consistent with Arrow (#43)
Arrow 53.4.1 added this requirement because chrono shipped a breaking update. However, Cargo still tries to install the latest chrono as a dependency of orc-rust, which 1. keeps the broken chrono version 2. prevents installing the latest Arrow version.
1 parent 6976745 commit 07a7978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ all-features = true
3535
arrow = { version = "53.1.0", features = ["prettyprint", "chrono-tz"] }
3636
bytemuck = { version = "1.18.0", features = ["must_cast"] }
3737
bytes = "1.4"
38-
chrono = { version = "0.4.37", default-features = false, features = ["std"] }
38+
chrono = { version = ">= 0.4.37, < 0.4.40", default-features = false, features = ["std"] }
3939
chrono-tz = "0.10"
4040
fallible-streaming-iterator = { version = "0.1" }
4141
flate2 = "1"

0 commit comments

Comments
 (0)