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"