Skip to content

Commit 5de6694

Browse files
jonahgaowiedld
authored andcommitted
fix: cargo msrv check failed (apache#13654)
* fix: cargo msrv check failed * Update comment
1 parent a4dd1e2 commit 5de6694

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datafusion/substrait/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ object_store = { workspace = true }
4242
pbjson-types = "0.7"
4343
# TODO use workspace version
4444
prost = "0.13"
45-
substrait = { version = "0.49", features = ["serde"] }
45+
# The MSRV of [email protected] is 1.80.1, which is higher than ours.
46+
# TODO: Update this version constraint when DataFusion updates its MSRV.
47+
substrait = { version = ">=0.49.0, <0.49.5", features = ["serde"] }
4648
url = { workspace = true }
4749

4850
[dev-dependencies]

0 commit comments

Comments
 (0)