From ecb97745d068938ecd06ce629565d9380fda7303 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 9 Jul 2025 07:59:23 -0700 Subject: [PATCH 1/2] Bump the MSRV due to transitive dependencies datafusion-cli depends on aws-config which has some transitive dependencies which require 1.85. This was a dependabot upgrade in 8366d6e155 16:18:43 error: rustc 1.83.0 is not supported by the following packages: 16:18:43 aws-sdk-sso@1.74.0 requires rustc 1.85.0 16:18:43 aws-sdk-ssooidc@1.75.0 requires rustc 1.85.0 16:18:43 aws-sdk-sts@1.76.0 requires rustc 1.85.0 16:18:43 Either upgrade rustc or select compatible dependency versions with ```16:18:43 error: rustc 1.83.0 is not supported by the following packages: 16:18:43 aws-sdk-sso@1.74.0 requires rustc 1.85.0 16:18:43 aws-sdk-ssooidc@1.75.0 requires rustc 1.85.0 16:18:43 aws-sdk-sts@1.76.0 requires rustc 1.85.0 ``` The AWS SDK for Rust team takes a pretty lenient approach with MSRV upgrades and doesn't really treat them as breaking which is why aws-config --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4c19cb8c50a2f..d002bd79f8b3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ license = "Apache-2.0" readme = "README.md" repository = "https://github.com/apache/datafusion" # Define Minimum Supported Rust Version (MSRV) -rust-version = "1.82.0" +rust-version = "1.85.0" # Define DataFusion version version = "48.0.0" From 64df397b64b361d57271b5bacea90c23d04e30e8 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 9 Jul 2025 09:13:00 -0700 Subject: [PATCH 2/2] Update Cargo.toml Co-authored-by: Oleks V --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d002bd79f8b3d..db704dcdaaabd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ license = "Apache-2.0" readme = "README.md" repository = "https://github.com/apache/datafusion" # Define Minimum Supported Rust Version (MSRV) -rust-version = "1.85.0" +rust-version = "1.85.1" # Define DataFusion version version = "48.0.0"