From 14aed318d1e2b77b8ffc26535a43f33354b04ba7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 08:16:35 +0000 Subject: [PATCH] deps: bump x25519-dalek from 2.0.1 to 3.0.0 Bumps [x25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 2.0.1 to 3.0.0. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Changelog](https://github.com/dalek-cryptography/curve25519-dalek/blob/3.0.0/CHANGELOG.md) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/x25519-2.0.1...3.0.0) --- updated-dependencies: - dependency-name: x25519-dalek dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 44 ++++++++++++++++++++++++++++++++----- transports/noise/Cargo.toml | 2 +- 2 files changed, 39 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a978495d3a0..cdb437ab7fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1169,7 +1169,22 @@ dependencies = [ "cpufeatures 0.2.17", "curve25519-dalek-derive", "digest 0.10.7", - "fiat-crypto", + "fiat-crypto 0.2.9", + "rustc_version", + "subtle", + "zeroize", +] + +[[package]] +name = "curve25519-dalek" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "curve25519-dalek-derive", + "fiat-crypto 0.3.0", "rustc_version", "subtle", "zeroize", @@ -1392,7 +1407,7 @@ dependencies = [ "thiserror 1.0.69", "tokio", "webrtc-util", - "x25519-dalek", + "x25519-dalek 2.0.1", "x509-parser 0.16.0", ] @@ -1438,7 +1453,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ - "curve25519-dalek", + "curve25519-dalek 4.1.3", "ed25519", "serde", "sha2 0.10.8", @@ -1576,6 +1591,12 @@ version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" +[[package]] +name = "fiat-crypto" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24" + [[package]] name = "file-sharing-example" version = "0.1.0" @@ -3335,7 +3356,7 @@ dependencies = [ "thiserror 2.0.18", "tracing", "tracing-subscriber", - "x25519-dalek", + "x25519-dalek 3.0.0", "zeroize", ] @@ -6169,7 +6190,7 @@ dependencies = [ "aes-gcm", "blake2", "chacha20poly1305", - "curve25519-dalek", + "curve25519-dalek 4.1.3", "rand_core 0.6.4", "ring", "rustc_version", @@ -8198,12 +8219,23 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" dependencies = [ - "curve25519-dalek", + "curve25519-dalek 4.1.3", "rand_core 0.6.4", "serde", "zeroize", ] +[[package]] +name = "x25519-dalek" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7e8131a03190127fb2263afc72b322ecadae46b6ff8c6f399ff5d02f5559af6" +dependencies = [ + "curve25519-dalek 5.0.0", + "rand_core 0.10.0", + "zeroize", +] + [[package]] name = "x509-parser" version = "0.16.0" diff --git a/transports/noise/Cargo.toml b/transports/noise/Cargo.toml index 7e21159331a..badce0a365d 100644 --- a/transports/noise/Cargo.toml +++ b/transports/noise/Cargo.toml @@ -21,7 +21,7 @@ rand = { workspace = true } static_assertions = "1" thiserror = { workspace = true } tracing = { workspace = true } -x25519-dalek = "2" +x25519-dalek = "3" zeroize = "1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies]