Skip to content

Commit

Permalink
Bump MSRV to 1.40.0
Browse files Browse the repository at this point in the history
The libloading crate is used for runtime linking
and since 0.6.0 it has a MSRV of 1.40.0
  • Loading branch information
KyleMayes authored and emilio committed Aug 18, 2020
1 parent 18ed6f4 commit c153553
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extern "C" {

## MSRV

The minimum supported Rust version is **1.34**.
The minimum supported Rust version is **1.40**.

No MSRV bump policy has been established yet, so MSRV may increase in any release.

Expand Down
4 changes: 2 additions & 2 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ case "$BINDGEN_JOB" in
# This test should not use Cargo.lock as it's ignored for library builds
rm Cargo.lock
# The MSRV below is also documented in README.md, please keep in sync
rustup install 1.34.0
cargo +1.34.0 build --lib $NO_DEFAULT_FEATURES --features "$BINDGEN_FEATURES"
rustup install 1.40.0
cargo +1.40.0 build --lib $NO_DEFAULT_FEATURES --features "$BINDGEN_FEATURES"
;;

"integration")
Expand Down

0 comments on commit c153553

Please sign in to comment.