Skip to content

Commit db80c40

Browse files
committed
Bump MSRV to 1.38.0: fixes crossbeam-utils dev-dependency
1 parent 2569e9d commit db80c40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Test both windows-gnu and windows-msvc; use beta rust on one
4848
- os: ubuntu-latest
4949
target: x86_64-unknown-linux-gnu
50-
toolchain: 1.36.0 # MSRV
50+
toolchain: 1.38.0 # MSRV
5151
- os: ubuntu-latest
5252
deps: sudo apt-get update ; sudo apt install gcc-multilib
5353
target: i686-unknown-linux-gnu
@@ -85,13 +85,13 @@ jobs:
8585
cargo test --target ${{ matrix.target }} --lib --tests --no-default-features --features=alloc,getrandom,small_rng
8686
cargo test --target ${{ matrix.target }} --examples
8787
- name: Test rand (all stable features, non-MSRV)
88-
if: ${{ matrix.toolchain != '1.36.0' }}
88+
if: ${{ matrix.toolchain != '1.38.0' }}
8989
run: |
9090
cargo test --target ${{ matrix.target }} --features=serde1,log,small_rng,min_const_gen
9191
- name: Test rand (all stable features, MSRV)
92-
if: ${{ matrix.toolchain == '1.36.0' }}
92+
if: ${{ matrix.toolchain == '1.38.0' }}
9393
run: |
94-
# const generics are not stable on 1.36.0
94+
# const generics are not stable on 1.38.0
9595
cargo test --target ${{ matrix.target }} --features=serde1,log,small_rng
9696
- name: Test rand_core
9797
run: |

0 commit comments

Comments
 (0)