Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "nightly", "1.88"] # MSRV
rust: ["stable", "nightly", "1.91"] # MSRV
flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v5
Expand All @@ -32,10 +32,10 @@ jobs:
cache-on-failure: true
# Only run tests on latest stable and above
- name: build
if: ${{ matrix.rust == '1.88' }} # MSRV
if: ${{ matrix.rust == '1.91' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.88' }} # MSRV
if: ${{ matrix.rust != '1.91' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}

feature-checks:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "revm-inspectors"
description = "Revm inspector implementations"
version = "0.34.2"
edition = "2021"
rust-version = "1.86.0"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/revm-inspectors"
repository = "https://github.com/paradigmxyz/revm-inspectors"
Expand Down