Skip to content

Commit d9e4d18

Browse files
authored
chore: bump MSRV to 1.81 (#37)
1 parent 2f7db0b commit d9e4d18

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+5-5
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.79"] # MSRV
23+
rust: ["stable", "nightly", "1.81"] # MSRV
2424
flags: ["--no-default-features", "", "--all-features"]
2525
exclude:
2626
# Some features have higher MSRV.
27-
- rust: "1.79" # MSRV
27+
- rust: "1.81" # 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.79' }} # MSRV
46+
if: ${{ matrix.rust != '1.81' }} # MSRV
4747
uses: taiki-e/install-action@nextest
4848
- name: build
49-
if: ${{ matrix.rust == '1.79' }} # MSRV
49+
if: ${{ matrix.rust == '1.81' }} # MSRV
5050
run: cargo build --workspace ${{ matrix.flags }}
5151
- name: test
52-
if: ${{ matrix.rust != '1.79' }} # MSRV
52+
if: ${{ matrix.rust != '1.81' }} # MSRV
5353
run: cargo nextest run --workspace ${{ matrix.flags }}
5454

5555
doctest:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Fork database used by Foundry"
44
version = "0.8.0"
55
edition = "2021"
66
# Remember to update clippy.toml as well
7-
rust-version = "1.79"
7+
rust-version = "1.81"
88
authors = ["Foundry Contributors"]
99
license = "MIT OR Apache-2.0"
1010
homepage = "https://github.com/foundry-rs/foundry-fork-db"

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.79"
1+
msrv = "1.81"

0 commit comments

Comments
 (0)