Skip to content

Commit

Permalink
Update MSRV to 1.60.0
Browse files Browse the repository at this point in the history
For the next 0.13.x release, we need a newer MSRV, because the log
dependency does not build with 1.59.0 anymore.

So we update the MSRV here.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
  • Loading branch information
matthiasbeyer committed Oct 23, 2023
1 parent 069891c commit d97b904
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.60.0
- stable
- beta
- nightly
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.60.0
- stable
- beta
- nightly
Expand All @@ -61,14 +61,14 @@ jobs:
override: true

- name: Run cargo test
if: matrix.rust != 'nightly' && matrix.rust != '1.59.0'
if: matrix.rust != 'nightly' && matrix.rust != '1.60.0'
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features

- name: Run cargo test (nightly)
if: matrix.rust == '1.59.0'
if: matrix.rust == '1.60.0'
continue-on-error: true
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.59.0
toolchain: 1.60.0
override: true
components: clippy

Expand All @@ -138,7 +138,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.60.0
- stable

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ more usage information.

## MSRV

We currently support Rust 1.56.0 and newer.
We currently support Rust 1.60.0 and newer.


## License
Expand Down

0 comments on commit d97b904

Please sign in to comment.