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

@ -40,8 +40,8 @@ smol_str = "0.2"
async-trait.workspace = true
# 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]
@ -56,8 +56,8 @@ hex = "0.4"
rand.workspace = true
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
arbitrary = { version = "1.1.7", features = ["derive"] }
proptest = { version = "1.0" }
arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive = "0.3"
[features]