From 950180f4b9f00e1e576b042352ff7d4a74a79aca Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 16 Jul 2026 13:24:32 -0600 Subject: [PATCH] aucpace+spake2: bump `curve25519-dalek` to v5 Release PR: dalek-cryptography/curve25519-dalek#916 --- aucpace/Cargo.toml | 4 ++-- spake2/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aucpace/Cargo.toml b/aucpace/Cargo.toml index bc2ac36..da48e3b 100644 --- a/aucpace/Cargo.toml +++ b/aucpace/Cargo.toml @@ -15,7 +15,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -curve25519-dalek = { version = "5.0.0-pre.6", default-features = false, features = ["digest", "rand_core"] } +curve25519-dalek = { version = "5", default-features = false, features = ["digest", "rand_core"] } password-hash = { version = "0.6.1", default-features = false, features = ["phc", "rand_core"] } rand_core = { version = "0.10", default-features = false } subtle = { version = "2.4", default-features = false } @@ -28,7 +28,7 @@ scrypt = { version = "0.12", default-features = false, optional = true, features sha2 = { version = "0.11", default-features = false, optional = true } [dev-dependencies] -curve25519-dalek = { version = "5.0.0-pre.6", features = ["digest", "rand_core"] } +curve25519-dalek = { version = "5", features = ["digest", "rand_core"] } password-hash = { version = "0.6.1", features = ["rand_core"] } postcard = { version = "1", features = ["use-std"] } scrypt = { version = "0.12", features = ["phc"] } diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 4e89620..fdc539c 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -15,7 +15,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -curve25519-dalek = { version = "5.0.0-pre.6", default-features = false, features = ["rand_core"] } +curve25519-dalek = { version = "5", default-features = false, features = ["rand_core"] } rand_core = { version = "0.10", default-features = false } sha2 = { version = "0.11", default-features = false } hkdf = { version = "0.13", default-features = false }