Skip to content

Commit 31b5fe4

Browse files
authored
base64ct: MSRV 1.60 (#886)
`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.
1 parent e96aa97 commit 31b5fe4

File tree

7 files changed

+9
-415
lines changed

7 files changed

+9
-415
lines changed

.github/workflows/base64ct.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
rust:
26-
- 1.56.0 # MSRV
26+
- 1.60.0 # MSRV
2727
- stable
2828
target:
2929
- thumbv7em-none-eabi
@@ -37,7 +37,6 @@ jobs:
3737
target: ${{ matrix.target }}
3838
override: true
3939
- uses: RustCrypto/actions/cargo-hack-install@master
40-
- run: rm ../Cargo.toml # Hack to preserve MSRV <1.60
4140
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std
4241

4342
minimal-versions:
@@ -50,7 +49,7 @@ jobs:
5049
strategy:
5150
matrix:
5251
rust:
53-
- 1.56.0 # MSRV
52+
- 1.60.0 # MSRV
5453
- stable
5554
steps:
5655
- uses: actions/checkout@v3
@@ -60,5 +59,4 @@ jobs:
6059
toolchain: ${{ matrix.rust }}
6160
override: true
6261
- uses: RustCrypto/actions/cargo-hack-install@master
63-
- run: rm ../Cargo.toml # Hack to preserve MSRV <1.60
6462
- run: cargo hack test --feature-powerset

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)