diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10d62c3..6a69475 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,11 +20,11 @@ jobs: strategy: fail-fast: false matrix: - rust: ["stable", "nightly", "1.85"] # MSRV + rust: ["stable", "nightly", "1.88"] # MSRV flags: ["--no-default-features", "", "--all-features"] exclude: # Some features have higher MSRV. - - rust: "1.85" # MSRV + - rust: "1.88" # MSRV flags: "--all-features" steps: - uses: actions/checkout@v3 @@ -43,13 +43,13 @@ jobs: cache-on-failure: true # Only run tests on latest stable and above - name: Install cargo-nextest - if: ${{ matrix.rust != '1.85' }} # MSRV + if: ${{ matrix.rust != '1.88' }} # MSRV uses: taiki-e/install-action@nextest - name: build - if: ${{ matrix.rust == '1.85' }} # MSRV + if: ${{ matrix.rust == '1.88' }} # MSRV run: cargo build --workspace ${{ matrix.flags }} - name: test - if: ${{ matrix.rust != '1.85' }} # MSRV + if: ${{ matrix.rust != '1.88' }} # MSRV run: cargo nextest run --workspace ${{ matrix.flags }} doctest: diff --git a/Cargo.toml b/Cargo.toml index e7dc425..945e7ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "Fork database used by Foundry" version = "0.16.0" edition = "2021" # Remember to update clippy.toml as well -rust-version = "1.85" +rust-version = "1.88" authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://github.com/foundry-rs/foundry-fork-db" @@ -37,7 +37,7 @@ futures = "0.3" parking_lot = "0.12" -revm = { version = "27.0.2", features = ["std", "serde"] } +revm = { version = "28.0.0", features = ["std", "serde"] } serde = "1.0" serde_json = "1.0" diff --git a/clippy.toml b/clippy.toml index b339f7c..f3322b5 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.85" +msrv = "1.88"