From 1619a424bf84a0641c78badca709e24c3560e9d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 00:01:49 +0000 Subject: [PATCH] build(deps): bump curve25519-dalek from 5.0.0-pre.6 to 5.0.0-rc.0 Bumps [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 5.0.0-pre.6 to 5.0.0-rc.0. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/curve25519-5.0.0-pre.6...curve25519-5.0.0-rc.0) --- updated-dependencies: - dependency-name: curve25519-dalek dependency-version: 5.0.0-rc.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++-------------- aucpace/Cargo.toml | 4 ++-- spake2/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11a8e92..3bf46b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -137,15 +137,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861" -[[package]] -name = "cpufeatures" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" -dependencies = [ - "libc", -] - [[package]] name = "cpufeatures" version = "0.3.0" @@ -197,12 +188,12 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "5.0.0-pre.6" +version = "5.0.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3" +checksum = "4f359e08ca85e7bd759e1fd933ff2bccd81864c60a8fba0e259c7f822b0924bf" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", + "cpufeatures", "curve25519-dalek-derive", "digest", "fiat-crypto", @@ -809,7 +800,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" dependencies = [ "cfg-if", - "cpufeatures 0.3.0", + "cpufeatures", "digest", ] @@ -820,7 +811,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" dependencies = [ "cfg-if", - "cpufeatures 0.3.0", + "cpufeatures", "digest", ] diff --git a/aucpace/Cargo.toml b/aucpace/Cargo.toml index bc2ac36..dd45c5a 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.0.0-rc.0", 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.0.0-rc.0", 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..bb172d1 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.0.0-rc.0", 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 }