From 9175678977035ba5ed689c8ae23444d8db0ebd56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 02:16:28 +0000 Subject: [PATCH] chore(deps): update curve25519-dalek requirement in /rust/cli Updates the requirements on [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) to permit the latest version. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/commits/curve25519-5.0.0) --- updated-dependencies: - dependency-name: curve25519-dalek dependency-version: 5.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/cli/Cargo.toml b/rust/cli/Cargo.toml index 7d4b5e59..488e890c 100644 --- a/rust/cli/Cargo.toml +++ b/rust/cli/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/freenet/web/rust/cli" [dependencies] -curve25519-dalek = { version = "4.1.3", features = ["rand_core", "serde"]} +curve25519-dalek = { version = "5.0.0", features = ["rand_core", "serde"]} ed25519-dalek = { version = "2.1.1", features = ["rand_core", "serde"]} base64 = "0.22.1" rand_core = "0.6"