diff options
author | Darren Kulp <darren@kulp.ch> | 2022-07-16 21:18:59 -0400 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-07-18 10:50:15 +0200 |
commit | 87e2e91356d52ba8aaa32cf3d06a2dd978740bc8 (patch) | |
tree | 1d0709d7bfa2de8b7be9f277b47222d4d7b8b999 | |
parent | ae1ce7d12813c6b8ff36ebd0a7a92f81e4930eec (diff) |
Bump MSRV to 1.57.0
-rw-r--r-- | .github/workflows/bindgen.yml | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml index 3e223413..6adbb5da 100644 --- a/.github/workflows/bindgen.yml +++ b/.github/workflows/bindgen.yml @@ -48,11 +48,11 @@ jobs: profile: minimal # MSRV below is documented in Cargo.toml and README.md, please update those if you # change this. - toolchain: 1.56.1 + toolchain: 1.57.0 override: true - name: Build with msrv - run: rm Cargo.lock && cargo +1.56.1 build --lib + run: rm Cargo.lock && cargo +1.57.0 build --lib quickchecking: runs-on: ubuntu-latest @@ -18,7 +18,7 @@ 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" +rust-version = "1.57.0" include = [ "LICENSE", @@ -39,7 +39,7 @@ extern "C" { ## MSRV -The minimum supported Rust version is **1.56.1**. +The minimum supported Rust version is **1.57.0**. No MSRV bump policy has been established yet, so MSRV may increase in any release. |