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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.85"
msrv = "1.88"
Loading