summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/bindgen.yml6
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
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
diff --git a/Cargo.toml b/Cargo.toml
index b3e4c501..f3297d19 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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",
diff --git a/README.md b/README.md
index 4b1194fa..3ae5f967 100644
--- a/README.md
+++ b/README.md
@@ -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.