Skip to content

Commit 3d17340

Browse files
committed
Bump oldest rustc for preserve_order feature to 1.56.1
Required by 2021 edition in hashbrown. error: failed to download `hashbrown v0.12.1` Caused by: unable to get packages from source Caused by: failed to parse manifest at github.com-1ecc6299db9ec823/hashbrown-0.12.1/Cargo.toml Caused by: failed to parse the `edition` key Caused by: this version of Cargo is older than the `2021` edition, and only supports `2015` and `2018` editions.
1 parent dab5ed3 commit 3d17340

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
rust: [beta, stable, 1.53.0, 1.46.0, 1.45.0, 1.40.0, 1.38.0, 1.36.0]
36+
rust: [beta, stable, 1.56.1, 1.53.0, 1.46.0, 1.45.0, 1.40.0, 1.38.0, 1.36.0]
3737
os: [ubuntu]
3838
include:
3939
- rust: stable
@@ -51,9 +51,9 @@ jobs:
5151
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc
5252
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,raw_value
5353
- run: cargo check --features preserve_order
54-
if: matrix.rust != '1.45.0' && matrix.rust != '1.40.0' && matrix.rust != '1.38.0' && matrix.rust != '1.36.0'
54+
if: matrix.rust != '1.53.0' && matrix.rust != '1.46.0' && matrix.rust != '1.45.0' && matrix.rust != '1.40.0' && matrix.rust != '1.38.0' && matrix.rust != '1.36.0'
5555
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,preserve_order
56-
if: matrix.rust != '1.45.0' && matrix.rust != '1.40.0' && matrix.rust != '1.38.0' && matrix.rust != '1.36.0'
56+
if: matrix.rust != '1.53.0' && matrix.rust != '1.46.0' && matrix.rust != '1.45.0' && matrix.rust != '1.40.0' && matrix.rust != '1.38.0' && matrix.rust != '1.36.0'
5757
- name: Build without std
5858
run: |
5959
rustup target add aarch64-unknown-none

0 commit comments

Comments
 (0)