chore: move generators module (#8429)

This commit is contained in:
Matthias Seitz
2024-05-28 18:04:46 +02:00
committed by GitHub
parent 911a3a4a92
commit 329634256a
8 changed files with 19 additions and 14 deletions

View File

@ -28,13 +28,7 @@ auto_impl.workspace = true
thiserror.workspace = true
tracing.workspace = true
secp256k1 = { workspace = true, default-features = false, features = [
"alloc",
"recovery",
"rand",
], optional = true }
parking_lot = { workspace = true, optional = true }
rand = { workspace = true, optional = true }
[dev-dependencies]
reth-consensus = { workspace = true, features = ["test-utils"] }
@ -45,4 +39,4 @@ tokio = { workspace = true, features = ["full"] }
secp256k1 = { workspace = true, features = ["alloc", "recovery", "rand"] }
[features]
test-utils = ["reth-consensus/test-utils", "secp256k1", "rand", "parking_lot"]
test-utils = ["reth-consensus/test-utils", "parking_lot"]