From 3a9b8cb07c5ad13178aba064af3dfcd296c36d98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 10:56:33 +0000 Subject: [PATCH] build(deps): bump ed25519-dalek from 2.1.1 to 2.2.0 Bumps [ed25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 2.1.1 to 2.2.0. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/2.1.1...ed25519-2.2.0) --- updated-dependencies: - dependency-name: ed25519-dalek dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- signature/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f54e1589..781a75d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,9 +653,9 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ "curve25519-dalek", "ed25519", diff --git a/signature/Cargo.toml b/signature/Cargo.toml index c6e1707f..aa0b20fd 100644 --- a/signature/Cargo.toml +++ b/signature/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.78.0" [dependencies] ecdsa = { version = "^0.16.9", features = ["der", "signing", "verifying"] } -ed25519-dalek = { version = "2.1.1", features = ["rand_core"] } +ed25519-dalek = { version = "2.2.0", features = ["rand_core"] } generic-array = "^0.14.7" p256 = { version = "^0.13.2", features = ["ecdsa"] } rand = "^0.8" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 4d39673f..04497a99 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -12,7 +12,7 @@ publish = false [dependencies] base64 = "^0.22" -ed25519-dalek = { version = "2.1.1", features = ["rand_core"] } +ed25519-dalek = { version = "2.2.0", features = ["rand_core"] } generic-array = "^0.14.7" hex = "^0.4.3" p256 = { version = "^0.13.2", features = ["ecdsa", "pkcs8"] }