From 25db3b12e6d40d1f0cc326b26e13c5c3244199b3 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 21 Feb 2025 21:53:22 +0100 Subject: [PATCH] chore: add required rand feature for test (#14644) --- crates/net/discv4/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/net/discv4/Cargo.toml b/crates/net/discv4/Cargo.toml index 5d5ec7378..cd6c2187c 100644 --- a/crates/net/discv4/Cargo.toml +++ b/crates/net/discv4/Cargo.toml @@ -40,6 +40,7 @@ serde = { workspace = true, optional = true } itertools.workspace = true [dev-dependencies] +secp256k1 = { workspace = true, features = ["rand"] } assert_matches.workspace = true rand.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }