From 01e41793c362e5c96620deb565dcfc0ab1d9b1b7 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 3 May 2026 09:54:22 -0600 Subject: [PATCH] ed25519: remove `rand_core` dev-dependency (#1325) It's out-of-date and seemingly unused, possibly tied to the interop documentation which is currently disabled, but we can cross that bridge when we get there --- Cargo.lock | 1 - ed25519/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e3a855..b8982e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -477,7 +477,6 @@ version = "3.0.0-rc.5" dependencies = [ "hex-literal", "pkcs8", - "rand_core 0.9.5", "serdect", "signature 3.0.0", "zerocopy", diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index 4d62760..46588a0 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -30,7 +30,6 @@ zerocopy = { version = "0.8", optional = true, features = ["derive"] } #ed25519-dalek = { version = "2", features = ["rand_core"] } hex-literal = "1" #ring-compat = { version = "0.8", default-features = false, features = ["signature"] } -rand_core = { version = "0.9", features = ["std"] } [features] default = ["alloc"]