chore: Bump MSRV

This commit is contained in:
Ed Page 2022-03-29 14:56:17 -05:00
parent 0d7e8da7f5
commit bf2c277951
4 changed files with 7 additions and 7 deletions

View file

@ -1 +1 @@
msrv = "1.54.0" # MSRV
msrv = "1.59.0" # MSRV

View file

@ -51,7 +51,7 @@ jobs:
- name: No-default features
run: cargo test --workspace --no-default-features
msrv:
name: "Check MSRV: 1.54.0"
name: "Check MSRV: 1.59.0"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
@ -59,7 +59,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.54.0 # MSRV
toolchain: 1.59.0 # MSRV
profile: minimal
override: true
- uses: Swatinem/rust-cache@v1
@ -113,7 +113,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.54.0 # MSRV
toolchain: 1.59.0 # MSRV
profile: minimal
override: true
components: clippy

View file

@ -26,7 +26,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.54.0 # MSRV
toolchain: 1.59.0 # MSRV
profile: minimal
override: true
components: rustfmt

View file

@ -59,9 +59,9 @@ jobs:
strategy:
matrix:
rust:
- 1.54.0 # MSRV
- 1.59.0 # MSRV
- stable
continue-on-error: ${{ matrix.rust != '1.54.0' }} # MSRV
continue-on-error: ${{ matrix.rust != '1.59.0' }} # MSRV
runs-on: ubuntu-latest
steps:
- name: Checkout repository