From 6a805c10e2608139eb75c89012aeea196ba52d57 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 4 Feb 2026 08:45:43 -0700 Subject: [PATCH] Bump `x25519-dalek` to v3.0.0-pre.6 --- Cargo.lock | 8 ++++---- dhkem/Cargo.toml | 2 +- x-wing/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5ed3a7..ef88697 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,9 +335,9 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "5.0.0-pre.5" +version = "5.0.0-pre.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a434aec7908df6ca86cda069864d7686aea8afad979aadc9e30e50ac3e40b45a" +checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3" dependencies = [ "cfg-if", "cpufeatures", @@ -1756,9 +1756,9 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "3.0.0-pre.5" +version = "3.0.0-pre.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40dac5a6478dc8baae2031cfc87d966e427a4fe5011e7f90785ff5c8aa9f2d06" +checksum = "b3d5d6ff67acd3945b933e592bfa7143db4fcbb2f871754b6b9fbd7847fc5aea" dependencies = [ "curve25519-dalek", "rand_core", diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index dcdfc12..ee39c00 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -24,7 +24,7 @@ k256 = { version = "0.14.0-rc.7", optional = true, default-features = false, fea p256 = { version = "0.14.0-rc.7", optional = true, default-features = false, features = ["arithmetic"] } p384 = { version = "0.14.0-rc.7", optional = true, default-features = false, features = ["arithmetic"] } p521 = { version = "0.14.0-rc.7", optional = true, default-features = false, features = ["arithmetic"] } -x25519 = { version = "=3.0.0-pre.5", package = "x25519-dalek", optional = true, default-features = false } +x25519 = { version = "=3.0.0-pre.6", package = "x25519-dalek", optional = true, default-features = false } zeroize = { version = "1.8.1", optional = true, default-features = false } [dev-dependencies] diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index a12c1aa..473a234 100644 --- a/x-wing/Cargo.toml +++ b/x-wing/Cargo.toml @@ -23,7 +23,7 @@ kem = "0.3.0-rc.4" ml-kem = { version = "=0.3.0-pre.7", default-features = false, features = ["hazmat"] } rand_core = { version = "0.10", default-features = false } sha3 = { version = "0.11.0-rc.7", default-features = false } -x25519-dalek = { version = "=3.0.0-pre.5", default-features = false, features = ["static_secrets"] } +x25519-dalek = { version = "=3.0.0-pre.6", default-features = false, features = ["static_secrets"] } # optional dependencies zeroize = { version = "1.8.1", optional = true, default-features = true }