chore: make txpool cargo test compile (#4058)

This commit is contained in:
Matthias Seitz
2023-08-04 20:14:40 +02:00
committed by GitHub
parent 64188a3987
commit 443383b307
9 changed files with 28 additions and 22 deletions

View File

@ -21,8 +21,8 @@ codecs-derive = { path = "./derive", default-features = false }
revm-primitives = { workspace = true, features = ["serde"] }
# arbitrary utils
arbitrary = { version = "1.1.7", features = ["derive"], optional = true }
proptest = { version = "1.0", optional = true }
arbitrary = { workspace = true, features = ["derive"], optional = true }
proptest = { workspace = true, optional = true }
proptest-derive = { version = "0.3", optional = true }
[dev-dependencies]
@ -32,6 +32,6 @@ serde = "1.0"
modular-bitfield = "0.11.2"
test-fuzz = "4"
arbitrary = { version = "1.1.7", features = ["derive"] }
proptest = { version = "1.0" }
arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive = "0.3"