From 389c9da1ad13c7326b009729e8223b399812bb77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 20:27:49 +0000 Subject: [PATCH] build(deps): bump x25519-dalek from 3.0.0-pre.6 to 3.0.0-rc.0 Bumps [x25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 3.0.0-pre.6 to 3.0.0-rc.0. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/x25519-3.0.0-pre.6...x25519-3.0.0-rc.0) --- updated-dependencies: - dependency-name: x25519-dalek dependency-version: 3.0.0-rc.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- x-wing/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29ba717..8f0138d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -363,12 +363,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 0.3.0", "curve25519-dalek-derive", "fiat-crypto", "rustc_version", @@ -1856,9 +1856,9 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "3.0.0-pre.6" +version = "3.0.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d5d6ff67acd3945b933e592bfa7143db4fcbb2f871754b6b9fbd7847fc5aea" +checksum = "f17b575e04fcdb37e5509a85a14ff08116678a1c9724befb8b571db742dbdbb0" dependencies = [ "curve25519-dalek", "rand_core", diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index d15dba5..a5cdfcd 100644 --- a/x-wing/Cargo.toml +++ b/x-wing/Cargo.toml @@ -23,7 +23,7 @@ kem = "0.3" ml-kem = { version = "0.3.0-rc.0", default-features = false, features = ["hazmat"] } rand_core = { version = "0.10", default-features = false } sha3 = { version = "0.11", default-features = false } -x25519-dalek = { version = "3.0.0-pre.6", default-features = false, features = ["static_secrets"] } +x25519-dalek = { version = "3.0.0-rc.0", default-features = false, features = ["static_secrets"] } # optional dependencies zeroize = { version = "1.8.1", optional = true, default-features = true }