Skip to content

Commit 50683eb

Browse files
authored
chore(deps): bump revm 28.0.0, msrv 1.88 required for revm (#57)
* bump revm * bump msrv to 1.86, minimum required for alloy * bump to msrv 1.88 for revm
1 parent ae48e34 commit 50683eb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
rust: ["stable", "nightly", "1.85"] # MSRV
23+
rust: ["stable", "nightly", "1.88"] # MSRV
2424
flags: ["--no-default-features", "", "--all-features"]
2525
exclude:
2626
# Some features have higher MSRV.
27-
- rust: "1.85" # MSRV
27+
- rust: "1.88" # MSRV
2828
flags: "--all-features"
2929
steps:
3030
- uses: actions/checkout@v3
@@ -43,13 +43,13 @@ jobs:
4343
cache-on-failure: true
4444
# Only run tests on latest stable and above
4545
- name: Install cargo-nextest
46-
if: ${{ matrix.rust != '1.85' }} # MSRV
46+
if: ${{ matrix.rust != '1.88' }} # MSRV
4747
uses: taiki-e/install-action@nextest
4848
- name: build
49-
if: ${{ matrix.rust == '1.85' }} # MSRV
49+
if: ${{ matrix.rust == '1.88' }} # MSRV
5050
run: cargo build --workspace ${{ matrix.flags }}
5151
- name: test
52-
if: ${{ matrix.rust != '1.85' }} # MSRV
52+
if: ${{ matrix.rust != '1.88' }} # MSRV
5353
run: cargo nextest run --workspace ${{ matrix.flags }}
5454

5555
doctest:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Fork database used by Foundry"
44
version = "0.16.0"
55
edition = "2021"
66
# Remember to update clippy.toml as well
7-
rust-version = "1.85"
7+
rust-version = "1.88"
88
authors = ["Foundry Contributors"]
99
license = "MIT OR Apache-2.0"
1010
homepage = "https://github.com/foundry-rs/foundry-fork-db"
@@ -37,7 +37,7 @@ futures = "0.3"
3737

3838
parking_lot = "0.12"
3939

40-
revm = { version = "27.0.2", features = ["std", "serde"] }
40+
revm = { version = "28.0.0", features = ["std", "serde"] }
4141

4242
serde = "1.0"
4343
serde_json = "1.0"

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.85"
1+
msrv = "1.88"

0 commit comments

Comments
 (0)