From bd1f9bc127826a384d9dab0b68ba59454324a880 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 14:00:12 +0000 Subject: [PATCH] chore(deps): update msrv to v1.72 --- .clippy.toml | 2 +- .github/workflows/ci.yml | 6 +++--- Cargo.toml | 2 +- benches/access.rs | 2 +- benches/clone.rs | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.clippy.toml b/.clippy.toml index a0467c2..81d631e 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1,4 +1,4 @@ -msrv = "1.70" # MSRV +msrv = "1.72" # MSRV warn-on-all-wildcard-imports = true allow-expect-in-tests = true allow-unwrap-in-tests = true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e77e125..ecac04c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: - name: No-default features run: cargo miri test --no-default-features --features std msrv: - name: "Check MSRV: 1.70" + name: "Check MSRV: 1.72" runs-on: ubuntu-latest steps: - name: Checkout repository @@ -103,7 +103,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: "1.70" # MSRV + toolchain: "1.72" # MSRV - uses: Swatinem/rust-cache@v2 - name: Default features run: cargo check --workspace --all-targets @@ -165,7 +165,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: "1.70" # MSRV + toolchain: "1.72" # MSRV components: clippy - uses: Swatinem/rust-cache@v2 - name: Install SARIF tools diff --git a/Cargo.toml b/Cargo.toml index 06496d9..c7a44a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.70" # MSRV +rust-version = "1.72" # MSRV include = [ "build.rs", "src/**/*", diff --git a/benches/access.rs b/benches/access.rs index 63bad0b..c863ad4 100644 --- a/benches/access.rs +++ b/benches/access.rs @@ -1,7 +1,7 @@ #![allow( clippy::clone_on_copy, clippy::useless_conversion, - clippy::clone_double_ref + suspicious_double_ref_op )] use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion, Throughput}; diff --git a/benches/clone.rs b/benches/clone.rs index f443383..23bc30f 100644 --- a/benches/clone.rs +++ b/benches/clone.rs @@ -1,7 +1,7 @@ #![allow( clippy::clone_on_copy, clippy::useless_conversion, - clippy::clone_double_ref + suspicious_double_ref_op )] use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion, Throughput};