File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ jobs:
20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- rust : ["stable", "nightly", "1.85 "] # MSRV
23
+ rust : ["stable", "nightly", "1.88 "] # MSRV
24
24
flags : ["--no-default-features", "", "--all-features"]
25
25
exclude :
26
26
# Some features have higher MSRV.
27
- - rust : " 1.85 " # MSRV
27
+ - rust : " 1.88 " # MSRV
28
28
flags : " --all-features"
29
29
steps :
30
30
- uses : actions/checkout@v3
@@ -43,13 +43,13 @@ jobs:
43
43
cache-on-failure : true
44
44
# Only run tests on latest stable and above
45
45
- name : Install cargo-nextest
46
- if : ${{ matrix.rust != '1.85 ' }} # MSRV
46
+ if : ${{ matrix.rust != '1.88 ' }} # MSRV
47
47
uses : taiki-e/install-action@nextest
48
48
- name : build
49
- if : ${{ matrix.rust == '1.85 ' }} # MSRV
49
+ if : ${{ matrix.rust == '1.88 ' }} # MSRV
50
50
run : cargo build --workspace ${{ matrix.flags }}
51
51
- name : test
52
- if : ${{ matrix.rust != '1.85 ' }} # MSRV
52
+ if : ${{ matrix.rust != '1.88 ' }} # MSRV
53
53
run : cargo nextest run --workspace ${{ matrix.flags }}
54
54
55
55
doctest :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Fork database used by Foundry"
4
4
version = " 0.16.0"
5
5
edition = " 2021"
6
6
# Remember to update clippy.toml as well
7
- rust-version = " 1.85 "
7
+ rust-version = " 1.88 "
8
8
authors = [" Foundry Contributors" ]
9
9
license = " MIT OR Apache-2.0"
10
10
homepage = " https://github.com/foundry-rs/foundry-fork-db"
@@ -37,7 +37,7 @@ futures = "0.3"
37
37
38
38
parking_lot = " 0.12"
39
39
40
- revm = { version = " 27 .0.2 " , features = [" std" , " serde" ] }
40
+ revm = { version = " 28 .0.0 " , features = [" std" , " serde" ] }
41
41
42
42
serde = " 1.0"
43
43
serde_json = " 1.0"
Original file line number Diff line number Diff line change 1
- msrv = " 1.85 "
1
+ msrv = " 1.88 "
You can’t perform that action at this time.
0 commit comments