Skip to content

Commit

Permalink
Use rust MSRV 1.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould committed Dec 2, 2024
1 parent 8745ec3 commit 1476b47
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, 1.56.1]
rust: [stable, 1.63.0]
exclude:
- os: macOS-latest
rust: 1.56.1
rust: 1.63.0
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -50,5 +50,9 @@ jobs:
rust-version: ${{ matrix.rust }}
- name: Checkout
uses: actions/checkout@v2
- name: Fixes for MSRV
if: matrix.rust == '1.63.0'
run: |
cargo update
- name: Test
run: cargo test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The crate is `no_std` but does require `alloc`.

## MSRV

1.56.1
1.63.0

## License

Expand Down

0 comments on commit 1476b47

Please sign in to comment.