From c15355306c04a08daad1bc3337fa557b62b9c797 Mon Sep 17 00:00:00 2001 From: Kyle Mayes Date: Sat, 8 Aug 2020 14:40:13 -0400 Subject: [PATCH] Bump MSRV to 1.40.0 The libloading crate is used for runtime linking and since 0.6.0 it has a MSRV of 1.40.0 --- README.md | 2 +- ci/script.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1268d06e1d..bd687858bf 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/ci/script.sh b/ci/script.sh index 967defc1e6..16eddbf81d 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -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")