diff options
author | Justin Smith <justsmth@amazon.com> | 2022-06-16 09:18:49 -0400 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-06-23 16:10:27 +0200 |
commit | a1a00434ffc0b5d93ef108d8cc93fafb8c649d83 (patch) | |
tree | f8b4c15cc6bb11adcc7369e7aec00b34e6255e15 | |
parent | 798c0566269382868a6b3f54a21a301012935042 (diff) |
Bump msrv to 1.56.1
-rw-r--r-- | .github/workflows/bindgen.yml | 6 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml index 0bc7d235..3e223413 100644 --- a/.github/workflows/bindgen.yml +++ b/.github/workflows/bindgen.yml @@ -46,13 +46,13 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - # MSRV below is documented in README.md, please update that if you + # MSRV below is documented in Cargo.toml and README.md, please update those if you # change this. - toolchain: 1.54.0 + toolchain: 1.56.1 override: true - name: Build with msrv - run: rm Cargo.lock && cargo +1.54.0 build --lib + run: rm Cargo.lock && cargo +1.56.1 build --lib quickchecking: runs-on: ubuntu-latest @@ -17,6 +17,8 @@ homepage = "https://rust-lang.github.io/rust-bindgen/" version = "0.60.1" edition = "2018" build = "build.rs" +# If you change this, also update README.md and msrv in .github/workflows/bindgen.yml +rust-version = "1.56.1" include = [ "LICENSE", @@ -39,7 +39,7 @@ extern "C" { ## MSRV -The minimum supported Rust version is **1.54**. +The minimum supported Rust version is **1.56.1**. No MSRV bump policy has been established yet, so MSRV may increase in any release. |