Skip to content

Commit 0e69f92

Browse files
authored
Upgrade all crates to the 2024 edition and bump MSRV to 1.85 (#913)
1 parent 647de14 commit 0e69f92

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1074
-1712
lines changed

.github/workflows/ecdsa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- thumbv7em-none-eabi
2727
- wasm32-unknown-unknown
2828
rust:
29-
- 1.81.0 # MSRV
29+
- 1.85.0 # MSRV
3030
- stable
3131
steps:
3232
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.81.0 # MSRV
45+
- 1.85.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v4

.github/workflows/ed25519.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- thumbv7em-none-eabi
2525
- wasm32-unknown-unknown
2626
toolchain:
27-
- 1.81.0 # MSRV
27+
- 1.85.0 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
toolchain:
45-
- 1.81.0 # MSRV
45+
- 1.85.0 # MSRV
4646
- stable
4747
runs-on: ubuntu-latest
4848
steps:

.github/workflows/ed448.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- thumbv7em-none-eabi
2525
- wasm32-unknown-unknown
2626
toolchain:
27-
- 1.81.0 # MSRV
27+
- 1.85.0 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
toolchain:
45-
- 1.81.0 # MSRV
45+
- 1.85.0 # MSRV
4646
- stable
4747
runs-on: ubuntu-latest
4848
steps:

.github/workflows/lms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.81.0 # MSRV
25+
- 1.85.0 # MSRV
2626
- stable
2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/ml-dsa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
rust:
26-
- 1.81.0 # MSRV
26+
- 1.85.0 # MSRV
2727
- stable
2828
steps:
2929
- uses: actions/checkout@v4

.github/workflows/rfc6979.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- thumbv7em-none-eabi
2525
- wasm32-unknown-unknown
2626
rust:
27-
- 1.81.0 # MSRV
27+
- 1.85.0 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
rust:
42-
- 1.81.0 # MSRV
42+
- 1.85.0 # MSRV
4343
- stable
4444
steps:
4545
- uses: actions/checkout@v4

.github/workflows/slh-dsa.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- thumbv7em-none-eabi
2828
- wasm32-unknown-unknown
2929
rust:
30-
- 1.81.0 # MSRV
30+
- 1.85.0 # MSRV
3131
- stable
3232
steps:
3333
- uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
matrix:
4848
rust:
49-
- 1.81.0 # MSRV
49+
- 1.85.0 # MSRV
5050
- stable
5151
test_config:
5252
- --no-default-features
@@ -84,9 +84,9 @@ jobs:
8484
runs-on: ubuntu-latest
8585
strategy:
8686
matrix:
87-
test-partition: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
87+
test-partition: [1, 2, 3, 4]
8888
rust:
89-
- 1.81.0 # MSRV
89+
- 1.85.0 # MSRV
9090
- stable
9191
test_config:
9292
- --no-default-features
@@ -109,4 +109,4 @@ jobs:
109109
fi
110110
111111
~/.cargo/bin/cargo-nextest nextest run --archive-file nextest-archive-${{ matrix.rust }}-${{ matrix.test_config }}.tar.zst \
112-
--partition count:${{ matrix.test-partition }}/16
112+
--partition count:${{ matrix.test-partition }}/4

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- uses: actions/checkout@v4
3030
- uses: dtolnay/rust-toolchain@master
3131
with:
32-
toolchain: 1.81.0
32+
toolchain: 1.85.0
3333
components: clippy
3434
- run: cargo clippy --all-features -- -D warnings

0 commit comments

Comments
 (0)