This is an automated email from the ASF dual-hosted git repository.

korowa pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new c510ab46fc fix: cargo msrv check failed (#13654)
c510ab46fc is described below

commit c510ab46fcb1148052bb8999e423360b4c17ecdf
Author: Jonah Gao <[email protected]>
AuthorDate: Thu Dec 5 12:32:37 2024 +0800

    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 32c69727a2..3bef695471 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 [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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to