fix: add enable missing arbitrary feature (#7688)

This commit is contained in:
Matthias Seitz
2024-04-16 23:05:08 +02:00
committed by GitHub
parent d39a8d7404
commit 86d8f0b0ec

View File

@ -64,14 +64,17 @@ proptest-derive = { workspace = true, optional = true }
strum = { workspace = true, features = ["derive"] }
[dev-dependencies]
# eth
revm-primitives = { workspace = true, features = ["arbitrary"] }
nybbles = { workspace = true, features = ["arbitrary"] }
alloy-trie = { workspace = true, features = ["arbitrary"] }
alloy-eips = { workspace = true, features = ["arbitrary"] }
arbitrary = { workspace = true, features = ["derive"] }
assert_matches.workspace = true
proptest.workspace = true
proptest-derive.workspace = true
rand.workspace = true
revm-primitives = { workspace = true, features = ["arbitrary"] }
nybbles = { workspace = true, features = ["arbitrary"] }
alloy-trie = { workspace = true, features = ["arbitrary"] }
serde_json.workspace = true
test-fuzz.workspace = true
toml.workspace = true
@ -99,6 +102,7 @@ arbitrary = [
"nybbles/arbitrary",
"alloy-trie/arbitrary",
"alloy-chains/arbitrary",
"alloy-eips/arbitrary",
"dep:arbitrary",
"dep:proptest",
"dep:proptest-derive",