From ca4728713e05d35544571cea376e906a27fcebf5 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 3 Dec 2024 15:16:30 +0100 Subject: [PATCH] chore: bump msrv 1.81 --- .github/workflows/ci.yml | 6 +++--- Cargo.toml | 2 +- clippy.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0a0bb5a..d57a5a80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - rust: ["stable", "nightly", "1.79"] # MSRV + rust: ["stable", "nightly", "1.81"] # MSRV flags: ["", "--all-features"] steps: - uses: actions/checkout@v3 @@ -28,10 +28,10 @@ jobs: cache-on-failure: true # Only run tests on latest stable and above - name: build - if: ${{ matrix.rust == '1.79' }} # MSRV + if: ${{ matrix.rust == '1.81' }} # MSRV run: cargo build --workspace ${{ matrix.flags }} - name: test - if: ${{ matrix.rust != '1.79' }} # MSRV + if: ${{ matrix.rust != '1.81' }} # MSRV run: cargo test --workspace ${{ matrix.flags }} feature-checks: diff --git a/Cargo.toml b/Cargo.toml index 7fb6500f..28c3fcf1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "revm-inspectors" description = "Revm inspector implementations" version = "0.12.0" edition = "2021" -rust-version = "1.79.0" +rust-version = "1.81.0" license = "MIT OR Apache-2.0" homepage = "https://github.com/paradigmxyz/revm-inspectors" repository = "https://github.com/paradigmxyz/revm-inspectors" diff --git a/clippy.toml b/clippy.toml index f1acf4b1..8c0bc009 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.79" +msrv = "1.81"