From ea5909984cd176b8c07693c11adc98620e69c019 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 06:38:50 +0000 Subject: [PATCH] chore(deps)(deps): update ed25519-dalek requirement Updates the requirements on [ed25519-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: ed25519-dalek dependency-version: 3.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- contracts/token-factory/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token-factory/Cargo.toml b/contracts/token-factory/Cargo.toml index 797b2959..35378a5e 100644 --- a/contracts/token-factory/Cargo.toml +++ b/contracts/token-factory/Cargo.toml @@ -17,7 +17,7 @@ soroban-sdk = { version = "27.0.3", features = ["testutils", "hazmat-address"] } proptest = "1.4" serde = { version = "1", features = ["derive"] } serde_json = "1" -ed25519-dalek = { version = "2", default-features = false, features = ["rand_core"] } +ed25519-dalek = { version = "3", default-features = false, features = ["rand_core"] } [[test]] name = "contract_replay_regression_test"