chore: remove proptest-derive dev deps (#9719)

This commit is contained in:
Dan Cline
2024-07-22 17:41:25 -04:00
committed by GitHub
parent 3df7450e02
commit ed16643f12
12 changed files with 1 additions and 23 deletions

10
Cargo.lock generated
View File

@ -6610,7 +6610,6 @@ dependencies = [
"modular-bitfield", "modular-bitfield",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"reth-codecs-derive", "reth-codecs-derive",
"serde", "serde",
"serde_json", "serde_json",
@ -6741,7 +6740,6 @@ dependencies = [
"pprof", "pprof",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"reth-codecs", "reth-codecs",
"reth-primitives", "reth-primitives",
@ -7060,7 +7058,6 @@ dependencies = [
"pin-project", "pin-project",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"reth-chainspec", "reth-chainspec",
"reth-codecs", "reth-codecs",
@ -7093,7 +7090,6 @@ dependencies = [
"derive_more", "derive_more",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"reth-chainspec", "reth-chainspec",
"reth-codecs-derive", "reth-codecs-derive",
@ -8038,7 +8034,6 @@ dependencies = [
"pprof", "pprof",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"rayon", "rayon",
"reth-chainspec", "reth-chainspec",
@ -8077,7 +8072,6 @@ dependencies = [
"modular-bitfield", "modular-bitfield",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"reth-codecs", "reth-codecs",
"revm-primitives", "revm-primitives",
@ -8173,7 +8167,6 @@ dependencies = [
"modular-bitfield", "modular-bitfield",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"reth-codecs", "reth-codecs",
"serde", "serde",
"serde_json", "serde_json",
@ -8482,7 +8475,6 @@ dependencies = [
"bytes", "bytes",
"jsonrpsee-types", "jsonrpsee-types",
"proptest", "proptest",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"serde_json", "serde_json",
"similar-asserts", "similar-asserts",
@ -8587,7 +8579,6 @@ dependencies = [
"modular-bitfield", "modular-bitfield",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"rand 0.8.5", "rand 0.8.5",
"reth-codecs", "reth-codecs",
"reth-trie-common", "reth-trie-common",
@ -8797,7 +8788,6 @@ dependencies = [
"plain_hasher", "plain_hasher",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",
"proptest-derive 0.5.0",
"reth-codecs", "reth-codecs",
"reth-primitives-traits", "reth-primitives-traits",
"revm-primitives", "revm-primitives",

View File

@ -36,7 +36,6 @@ auto_impl.workspace = true
[dev-dependencies] [dev-dependencies]
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-derive.workspace = true
[features] [features]
default = ["std", "serde", "rustc-hash"] default = ["std", "serde", "rustc-hash"]

View File

@ -38,7 +38,6 @@ alloy-chains = { workspace = true, features = ["arbitrary"] }
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
rand.workspace = true rand.workspace = true
[features] [features]

View File

@ -56,7 +56,6 @@ secp256k1 = { workspace = true, features = [
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
async-stream.workspace = true async-stream.workspace = true
serde.workspace = true serde.workspace = true

View File

@ -44,7 +44,6 @@ alloy-consensus = { workspace = true, features = ["arbitrary"] }
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true
rand.workspace = true rand.workspace = true
serde_json.workspace = true serde_json.workspace = true

View File

@ -51,7 +51,6 @@ zstd = { workspace = true, features = ["experimental"], optional = true }
# arbitrary utils # arbitrary utils
arbitrary = { workspace = true, features = ["derive"], optional = true } arbitrary = { workspace = true, features = ["derive"], optional = true }
proptest = { workspace = true, optional = true } proptest = { workspace = true, optional = true }
# proptest-derive = { workspace = true, optional = true }
[dev-dependencies] [dev-dependencies]
# eth # eth
@ -67,7 +66,6 @@ assert_matches.workspace = true
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
rand.workspace = true rand.workspace = true
serde_json.workspace = true serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true

View File

@ -25,7 +25,6 @@ thiserror.workspace = true
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
assert_matches.workspace = true assert_matches.workspace = true
proptest.workspace = true proptest.workspace = true
proptest-derive.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
serde_json.workspace = true serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true

View File

@ -33,7 +33,6 @@ jsonrpsee-types = { workspace = true, optional = true }
alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbitrary"] } alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbitrary"] }
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-derive.workspace = true
rand.workspace = true rand.workspace = true
similar-asserts.workspace = true similar-asserts.workspace = true
bytes.workspace = true bytes.workspace = true
@ -41,4 +40,4 @@ serde_json.workspace = true
[features] [features]
default = ["jsonrpsee-types"] default = ["jsonrpsee-types"]
arbitrary = ["alloy-primitives/arbitrary", "alloy-rpc-types/arbitrary"] arbitrary = ["alloy-primitives/arbitrary", "alloy-rpc-types/arbitrary"]

View File

@ -23,7 +23,6 @@ serde.workspace = true
[dev-dependencies] [dev-dependencies]
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-derive.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true
rand.workspace = true rand.workspace = true

View File

@ -38,7 +38,6 @@ serde_json.workspace = true
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-derive.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
[features] [features]

View File

@ -58,7 +58,6 @@ iai-callgrind.workspace = true
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
paste.workspace = true paste.workspace = true

View File

@ -38,7 +38,6 @@ arbitrary = { workspace = true, features = ["derive"] }
assert_matches.workspace = true assert_matches.workspace = true
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
proptest-derive.workspace = true
serde_json.workspace = true serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true
toml.workspace = true toml.workspace = true