From 58c6156b0d91e82abb03c26187b8d18fa4345ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 10 Aug 2024 12:37:51 +0200 Subject: [PATCH] Bump MSRV again for clap. --- .github/workflows/cbindgen.yml | 2 +- CHANGES | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cbindgen.yml b/.github/workflows/cbindgen.yml index f9d3672ca..b36c2511b 100644 --- a/.github/workflows/cbindgen.yml +++ b/.github/workflows/cbindgen.yml @@ -34,7 +34,7 @@ jobs: - name: Install minimum supported Rust version id: msrv - uses: dtolnay/rust-toolchain@1.70 + uses: dtolnay/rust-toolchain@1.74 - name: Build with minimum supported Rust version run: | diff --git a/CHANGES b/CHANGES index 29c5b2f5d..153bb2e0a 100644 --- a/CHANGES +++ b/CHANGES @@ -4,7 +4,7 @@ * Revert: The `Config` struct now has a private member. * Allow users to specify a crate version for bindings generation (#901). - * Update MSRV to 1.70 (#912). + * Update MSRV to 1.74 (#912, #987). * Support #[deprecated] on enum variants (#933). * Support integrating the package_version information in a header file comment (#939). * Add a language backend (#942). diff --git a/Cargo.toml b/Cargo.toml index aa6565758..7638e8757 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bindings", "ffi", "code-generation"] categories = ["external-ffi-bindings", "development-tools::ffi"] repository = "https://github.com/mozilla/cbindgen" edition = "2018" -rust-version = "1.70" +rust-version = "1.74" exclude = [ "tests/profile.rs", # Test relies in a sub-crate, see https://github.com/rust-lang/cargo/issues/9017 ]