File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
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.79 "] # MSRV
23
+ rust : ["stable", "nightly", "1.81 "] # MSRV
24
24
flags : ["--no-default-features", "", "--all-features"]
25
25
exclude :
26
26
# Some features have higher MSRV.
27
- - rust : " 1.79 " # MSRV
27
+ - rust : " 1.81 " # 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.79 ' }} # MSRV
46
+ if : ${{ matrix.rust != '1.81 ' }} # MSRV
47
47
uses : taiki-e/install-action@nextest
48
48
- name : build
49
- if : ${{ matrix.rust == '1.79 ' }} # MSRV
49
+ if : ${{ matrix.rust == '1.81 ' }} # MSRV
50
50
run : cargo build --workspace ${{ matrix.flags }}
51
51
- name : test
52
- if : ${{ matrix.rust != '1.79 ' }} # MSRV
52
+ if : ${{ matrix.rust != '1.81 ' }} # 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.8.0"
5
5
edition = " 2021"
6
6
# Remember to update clippy.toml as well
7
- rust-version = " 1.79 "
7
+ rust-version = " 1.81 "
8
8
authors = [" Foundry Contributors" ]
9
9
license = " MIT OR Apache-2.0"
10
10
homepage = " https://github.com/foundry-rs/foundry-fork-db"
Original file line number Diff line number Diff line change 1
- msrv = " 1.79 "
1
+ msrv = " 1.81 "
You can’t perform that action at this time.
0 commit comments