Skip to content

Commit bff5f53

Browse files
committed
Bump edition to 2024; MSRV 1.85
1 parent f1cbfe2 commit bff5f53

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

.github/workflows/aucpace.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61 # MSRV
27+
- 1.85 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.61 # MSRV
45+
- 1.85 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v4

.github/workflows/spake2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.60.0 # MSRV
25+
- 1.85.0 # MSRV
2626
- stable
2727
target:
2828
- thumbv7em-none-eabi
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
rust:
43-
- 1.60.0 # MSRV
43+
- 1.85.0 # MSRV
4444
- stable
4545
steps:
4646
- uses: actions/checkout@v4

.github/workflows/srp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61 # MSRV
27+
- 1.85 # MSRV
2828
- stable
2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: dtolnay/rust-toolchain@master
1919
with:
20-
toolchain: 1.85.1
20+
toolchain: 1.91.0
2121
components: clippy
2222
- run: cargo clippy --all -- -D warnings
2323

aucpace/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ keywords = ["crypto", "pake", "authentication"]
1111
categories = ["cryptography", "authentication"]
1212
exclude = [".gitignore"]
1313
readme = "README.md"
14-
edition = "2021"
15-
rust-version = "1.61"
14+
edition = "2024"
15+
rust-version = "1.85"
1616

1717
[dependencies]
1818
curve25519-dalek = { version = "4", default-features = false, features = [

aucpace/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ USE AT YOUR OWN RISK!
5656

5757
## Minimum Supported Rust Version
5858

59-
Rust **1.61** or higher.
59+
Rust **1.85** or higher.
6060

6161
Minimum supported Rust version can be changed in the future, but it will be
6262
done with a minor version bump.
@@ -85,7 +85,7 @@ dual licensed as above, without any additional terms or conditions.
8585
[build-image]: https://github.com/RustCrypto/PAKEs/actions/workflows/aucpace.yml/badge.svg
8686
[build-link]: https://github.com/RustCrypto/PAKEs/actions/workflows/aucpace.yml
8787
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
88-
[rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
88+
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
8989
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
9090
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260045-PAKEs
9191

spake2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spake2"
3-
version = "0.4.0"
3+
version = "0.5.0-pre"
44
authors = ["Brian Warner <[email protected]>"]
55
description = "The SPAKE2 password-authenticated key-exchange algorithm."
66
documentation = "https://docs.rs/spake2"
@@ -11,8 +11,8 @@ keywords = ["crypto", "pake", "authentication"]
1111
categories = ["cryptography", "authentication"]
1212
exclude = [".gitignore"]
1313
readme = "README.md"
14-
edition = "2021"
15-
rust-version = "1.60"
14+
edition = "2024"
15+
rust-version = "1.85"
1616

1717
[dependencies]
1818
curve25519-dalek = { version = "4.1.3", default-features = false, features = ["rand_core"] }

spake2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ USE AT YOUR OWN RISK!
7676

7777
## Minimum Supported Rust Version
7878

79-
Rust **1.60** or higher.
79+
Rust **1.85** or higher.
8080

8181
Minimum supported Rust version can be changed in the future, but it will be
8282
done with a minor version bump.
@@ -103,7 +103,7 @@ dual licensed as above, without any additional terms or conditions.
103103
[docs-image]: https://docs.rs/spake2/badge.svg
104104
[docs-link]: https://docs.rs/spake2/
105105
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
106-
[rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
106+
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
107107
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
108108
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260045-PAKEs
109109
[build-image]: https://github.com/RustCrypto/PAKEs/actions/workflows/spake2.yml/badge.svg

srp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repository = "https://github.com/RustCrypto/PAKEs"
99
keywords = ["crypto", "pake", "authentication"]
1010
categories = ["cryptography", "authentication"]
1111
readme = "README.md"
12-
edition = "2021"
13-
rust-version = "1.61"
12+
edition = "2024"
13+
rust-version = "1.85"
1414

1515
[dependencies]
1616
num-bigint = "0.4"

srp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ USE AT YOUR OWN RISK!
3232

3333
## Minimum Supported Rust Version
3434

35-
Rust **1.61** or higher.
35+
Rust **1.85** or higher.
3636

3737
Minimum supported Rust version can be changed in the future, but it will be
3838
done with a minor version bump.
@@ -59,7 +59,7 @@ dual licensed as above, without any additional terms or conditions.
5959
[docs-image]: https://docs.rs/srp/badge.svg
6060
[docs-link]: https://docs.rs/srp/
6161
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
62-
[rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
62+
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
6363
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
6464
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260045-PAKEs
6565
[build-image]: https://github.com/RustCrypto/PAKEs/actions/workflows/srp.yml/badge.svg

0 commit comments

Comments
 (0)