From ec11efb86106e4daf4105f02bc6e64fa89db04c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 18:56:17 +0000 Subject: [PATCH] chore(deps): update x25519-dalek requirement Updates the requirements on [x25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) to permit the latest version. - [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/2.0.0...3.0.0) --- updated-dependencies: - dependency-name: x25519-dalek dependency-version: 3.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 8950e64..92d37ab 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -242,7 +242,7 @@ subtle = { version = "2.5", default-features = false, optional = true } # Const tracing = { version = "0.1", optional = true } # Structured spans / events for observability (Phase 4.5) # --- Crypto (std-only) --- -x25519-dalek = { version = "2", optional = true, features = ["static_secrets", "zeroize"] } +x25519-dalek = { version = "3", optional = true, features = ["static_secrets", "zeroize"] } ed25519-dalek = { version = "2", optional = true, features = ["zeroize", "rand_core"] } ring = { version = "0.17", optional = true } # HW-accelerated AES-GCM (ARM64 AES intrinsics / x86 AES-NI) + ChaCha20-Poly1305 # --- Header protection (QUIC RFC 9001 ยง5.4) primitives, T4.6 ---