Skip to content

Commit 0d421a7

Browse files
committed
Bump MSRV to 1.88
1 parent 1f7c695 commit 0d421a7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/aes.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.85.0 # MSRV
28+
- 1.88.0 # MSRV
2929
- stable
3030
target:
3131
- thumbv7em-none-eabi
@@ -75,15 +75,15 @@ jobs:
7575
include:
7676
# 32-bit Linux
7777
- target: i686-unknown-linux-gnu
78-
rust: 1.85.0 # MSRV
78+
rust: 1.88.0 # MSRV
7979
deps: sudo apt update && sudo apt install gcc-multilib
8080
- target: i686-unknown-linux-gnu
8181
rust: stable
8282
deps: sudo apt update && sudo apt install gcc-multilib
8383

8484
# 64-bit Linux
8585
- target: x86_64-unknown-linux-gnu
86-
rust: 1.85.0 # MSRV
86+
rust: 1.88.0 # MSRV
8787
- target: x86_64-unknown-linux-gnu
8888
rust: stable
8989
steps:
@@ -180,15 +180,15 @@ jobs:
180180
include:
181181
# 32-bit Linux
182182
- target: i686-unknown-linux-gnu
183-
rust: 1.85.0 # MSRV
183+
rust: 1.88.0 # MSRV
184184
deps: sudo apt update && sudo apt install gcc-multilib
185185
- target: i686-unknown-linux-gnu
186186
rust: stable
187187
deps: sudo apt update && sudo apt install gcc-multilib
188188

189189
# 64-bit Linux
190190
- target: x86_64-unknown-linux-gnu
191-
rust: 1.85.0 # MSRV
191+
rust: 1.88.0 # MSRV
192192
- target: x86_64-unknown-linux-gnu
193193
rust: stable
194194
steps:
@@ -213,15 +213,15 @@ jobs:
213213
include:
214214
# 32-bit Linux
215215
- target: i686-unknown-linux-gnu
216-
rust: 1.85.0 # MSRV
216+
rust: 1.88.0 # MSRV
217217
deps: sudo apt update && sudo apt install gcc-multilib
218218
- target: i686-unknown-linux-gnu
219219
rust: stable
220220
deps: sudo apt update && sudo apt install gcc-multilib
221221

222222
# 64-bit Linux
223223
- target: x86_64-unknown-linux-gnu
224-
rust: 1.85.0 # MSRV
224+
rust: 1.88.0 # MSRV
225225
- target: x86_64-unknown-linux-gnu
226226
rust: stable
227227
steps:
@@ -243,13 +243,13 @@ jobs:
243243
include:
244244
# ARM64
245245
- target: aarch64-unknown-linux-gnu
246-
rust: 1.85.0 # MSRV
246+
rust: 1.88.0 # MSRV
247247
- target: aarch64-unknown-linux-gnu
248248
rust: stable
249249

250250
# PPC32
251251
- target: powerpc-unknown-linux-gnu
252-
rust: 1.85.0 # MSRV
252+
rust: 1.88.0 # MSRV
253253
- target: powerpc-unknown-linux-gnu
254254
rust: stable
255255
runs-on: ubuntu-latest
@@ -291,7 +291,7 @@ jobs:
291291
matrix:
292292
include:
293293
- target: aarch64-unknown-linux-gnu
294-
rust: 1.85.0 # MSRV
294+
rust: 1.88.0 # MSRV
295295
runs-on: ubuntu-latest
296296
# Cross mounts only current package, i.e. by default it ignores workspace's Cargo.toml
297297
defaults:
@@ -319,6 +319,6 @@ jobs:
319319
- uses: RustCrypto/actions/cargo-cache@master
320320
- uses: dtolnay/rust-toolchain@master
321321
with:
322-
toolchain: 1.85.0 # MSRV
322+
toolchain: 1.88.0 # MSRV
323323
components: clippy
324324
- run: cargo clippy --features hazmat -- -D warnings

aes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Pure Rust implementation of the Advanced Encryption Standard (a.k
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
edition = "2024"
8-
rust-version = "1.85"
8+
rust-version = "1.88"
99
readme = "README.md"
1010
documentation = "https://docs.rs/aes"
1111
repository = "https://github.com/RustCrypto/block-ciphers"

0 commit comments

Comments
 (0)