diff options
-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. |