Skip to content

Commit

Permalink
fix: cargo msrv check failed (#13654)
Browse files Browse the repository at this point in the history
* fix: cargo msrv check failed

* Update comment
  • Loading branch information
jonahgao authored and zhuliquan committed Dec 6, 2024
1 parent 660c4b1 commit d753b97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/substrait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ object_store = { workspace = true }
pbjson-types = "0.7"
# TODO use workspace version
prost = "0.13"
substrait = { version = "0.49", features = ["serde"] }
# The MSRV of [email protected] is 1.80.1, which is higher than ours.
# TODO: Update this version constraint when DataFusion updates its MSRV.
substrait = { version = ">=0.49.0, <0.49.5", features = ["serde"] }
url = { workspace = true }

[dev-dependencies]
Expand Down

0 comments on commit d753b97

Please sign in to comment.