From d753b97162fd4f8b2ee96cd67a3b8ab21a16e8a7 Mon Sep 17 00:00:00 2001 From: Jonah Gao Date: Thu, 5 Dec 2024 12:32:37 +0800 Subject: [PATCH] fix: cargo msrv check failed (#13654) * fix: cargo msrv check failed * Update comment --- datafusion/substrait/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/datafusion/substrait/Cargo.toml b/datafusion/substrait/Cargo.toml index 32c69727a25b7..3bef695471643 100644 --- a/datafusion/substrait/Cargo.toml +++ b/datafusion/substrait/Cargo.toml @@ -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 substrait@0.49.5 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]