From 765c2f064331301515df28ab54c46243221be87a Mon Sep 17 00:00:00 2001 From: itsjunetime Date: Sat, 16 Nov 2024 18:22:54 -0700 Subject: [PATCH] Fix arrow-flight/gen rust-version to make CI pass now --- .github/workflows/rust.yml | 1 + arrow-flight/gen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 75a1fe42d16d..19434fa4ffc4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -133,6 +133,7 @@ jobs: run: | find . -name Cargo.toml | while read -r dir do + echo "Checking package '$dir'" cargo msrv --log-target stdout verify --manifest-path "$dir" || exit 1 done # If no packages are using the workspace's rust-version, then it's out of date diff --git a/arrow-flight/gen/Cargo.toml b/arrow-flight/gen/Cargo.toml index f5501c2dd37e..53b275b52396 100644 --- a/arrow-flight/gen/Cargo.toml +++ b/arrow-flight/gen/Cargo.toml @@ -20,7 +20,7 @@ name = "gen" description = "Code generation for arrow-flight" version = "0.1.0" edition = { workspace = true } -rust-version = "1.56" +rust-version = "1.71.1" authors = { workspace = true } homepage = { workspace = true } repository = { workspace = true }