From 502b18273b1312e77dfe8967c0d6add0c95491ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Mon, 6 Oct 2025 15:41:37 +0100 Subject: [PATCH] update MSRV --- .github/workflows/ci.yml | 2 +- Cargo.toml | 3 +++ refinery/Cargo.toml | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3396194..d4d2ed3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v2 - id: set-versions run: | - MSRV=$(grep -oP 'rust-version\s*=\s*"\K[^"]+' ./refinery/Cargo.toml) + MSRV=$(grep -oP 'rust-version\s*=\s*"\K[^"]+' ./Cargo.toml) echo "versions=['stable', 'nightly', '$MSRV']" >> $GITHUB_OUTPUT cargo-fmt-clippy: diff --git a/Cargo.toml b/Cargo.toml index 9cd4a9e..b733425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,9 @@ members = [ "examples", ] +[workspace.package] +rust-version = "1.85" + [profile.release] codegen-units = 1 lto = true diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index ef1ab99..4e21892 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "refinery" version = "0.8.16" -rust-version = "1.83" authors = ["Katharina Fey ", "João Oliveira "] license = "MIT" description = "Powerful SQL migration toolkit for Rust"