Skip to content

Commit c510ab4

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datafusion/substrait/Cargo.toml

Lines changed: 3 additions & 1 deletion
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 substrait@0.49.5 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)