fix(deps): Fix dev-deps for reth-primitives (#12612)

This commit is contained in:
Emilia Hane
2024-11-18 10:03:54 +01:00
committed by GitHub
parent cfd4523537
commit 5056a08112
3 changed files with 4 additions and 3 deletions

View File

@ -68,6 +68,7 @@ exclude_crates=(
reth-static-file # tokio
reth-transaction-pool # c-kzg
reth-trie-parallel # tokio
reth-testing-utils
)
# Array to hold the results

View File

@ -62,11 +62,11 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
[dev-dependencies]
# eth
reth-chainspec.workspace = true
reth-chainspec = { workspace = true, features = ["arbitrary"] }
reth-codecs = { workspace = true, features = ["test-utils"] }
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
reth-testing-utils.workspace = true
reth-trie-common.workspace = true
reth-trie-common = { workspace = true, features = ["arbitrary"] }
revm-primitives = { workspace = true, features = ["arbitrary"] }
alloy-eips = { workspace = true, features = ["arbitrary"] }

View File

@ -12,7 +12,7 @@ repository.workspace = true
workspace = true
[dependencies]
reth-primitives = { workspace = true, features = ["secp256k1"] }
reth-primitives = { workspace = true, features = ["secp256k1", "arbitrary"] }
alloy-genesis.workspace = true
alloy-primitives.workspace = true