From f06fa805d44af98ecab32a8ca652132e60658dfd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 02:24:10 +0000 Subject: [PATCH] build(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 | 50 ++++++++++++++++++--------------- crates/klyron_crypto/Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b0b1851..cf636d6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1550,7 +1550,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", @@ -1968,7 +1983,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.9", @@ -2135,6 +2150,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 = "filetime" version = "0.2.29" @@ -3897,7 +3918,7 @@ dependencies = [ "bcrypt", "chacha20poly1305", "chrono", - "curve25519-dalek", + "curve25519-dalek 4.1.3", "ed25519-dalek", "hex", "hmac 0.12.1", @@ -9635,13 +9656,12 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "2.0.1" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" +checksum = "e7e8131a03190127fb2263afc72b322ecadae46b6ff8c6f399ff5d02f5559af6" dependencies = [ - "curve25519-dalek", - "rand_core 0.6.4", - "serde", + "curve25519-dalek 5.0.0", + "rand_core 0.10.1", "zeroize", ] @@ -9748,20 +9768,6 @@ name = "zeroize" version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" -dependencies = [ - "zeroize_derive", -] - -[[package]] -name = "zeroize_derive" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] [[package]] name = "zerotrie" diff --git a/crates/klyron_crypto/Cargo.toml b/crates/klyron_crypto/Cargo.toml index 9feea937..356444d5 100644 --- a/crates/klyron_crypto/Cargo.toml +++ b/crates/klyron_crypto/Cargo.toml @@ -18,7 +18,7 @@ chacha20poly1305 = "0.10" hmac = "0.12" pbkdf2 = "0.12" ed25519-dalek = "2" -x25519-dalek = { version = "2", features = ["static_secrets"] } +x25519-dalek = { version = "3", features = ["static_secrets"] } curve25519-dalek = "4" bcrypt = "0.16" argon2 = "0.5"