Skip to content

Commit

Permalink
base64ct: MSRV 1.60 (#886)
Browse files Browse the repository at this point in the history
`proptest` v1.1.0 has an MSRV of 1.60 by way of the `unarray` crate,
which requires `feature(maybe_uninit_extra)`.

We can get rid of all of the MSRV-related build/CI hacks by simply
bumping MSRV to 1.60.
  • Loading branch information
tarcieri authored Feb 26, 2023
1 parent e96aa97 commit 31b5fe4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 415 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/base64ct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.60.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -37,7 +37,6 @@ jobs:
target: ${{ matrix.target }}
override: true
- uses: RustCrypto/actions/cargo-hack-install@master
- run: rm ../Cargo.toml # Hack to preserve MSRV <1.60
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std

minimal-versions:
Expand All @@ -50,7 +49,7 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.60.0 # MSRV
- stable
steps:
- uses: actions/checkout@v3
Expand All @@ -60,5 +59,4 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true
- uses: RustCrypto/actions/cargo-hack-install@master
- run: rm ../Cargo.toml # Hack to preserve MSRV <1.60
- run: cargo hack test --feature-powerset
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 31b5fe4

Please sign in to comment.