From ed16643f122fcb010ae6744bee72e469d6692af1 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:41:25 -0400 Subject: [PATCH] chore: remove proptest-derive dev deps (#9719) --- Cargo.lock | 10 ---------- crates/ethereum-forks/Cargo.toml | 1 - crates/net/eth-wire-types/Cargo.toml | 1 - crates/net/eth-wire/Cargo.toml | 1 - crates/primitives-traits/Cargo.toml | 1 - crates/primitives/Cargo.toml | 2 -- crates/prune/types/Cargo.toml | 1 - crates/rpc/rpc-types/Cargo.toml | 3 +-- crates/stages/types/Cargo.toml | 1 - crates/storage/codecs/Cargo.toml | 1 - crates/storage/db-api/Cargo.toml | 1 - crates/trie/common/Cargo.toml | 1 - 12 files changed, 1 insertion(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0ea9d225..303deff97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6610,7 +6610,6 @@ dependencies = [ "modular-bitfield", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "reth-codecs-derive", "serde", "serde_json", @@ -6741,7 +6740,6 @@ dependencies = [ "pprof", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "reth-codecs", "reth-primitives", @@ -7060,7 +7058,6 @@ dependencies = [ "pin-project", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "reth-chainspec", "reth-codecs", @@ -7093,7 +7090,6 @@ dependencies = [ "derive_more", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "reth-chainspec", "reth-codecs-derive", @@ -8038,7 +8034,6 @@ dependencies = [ "pprof", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "rayon", "reth-chainspec", @@ -8077,7 +8072,6 @@ dependencies = [ "modular-bitfield", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "reth-codecs", "revm-primitives", @@ -8173,7 +8167,6 @@ dependencies = [ "modular-bitfield", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "reth-codecs", "serde", "serde_json", @@ -8482,7 +8475,6 @@ dependencies = [ "bytes", "jsonrpsee-types", "proptest", - "proptest-derive 0.5.0", "rand 0.8.5", "serde_json", "similar-asserts", @@ -8587,7 +8579,6 @@ dependencies = [ "modular-bitfield", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "rand 0.8.5", "reth-codecs", "reth-trie-common", @@ -8797,7 +8788,6 @@ dependencies = [ "plain_hasher", "proptest", "proptest-arbitrary-interop", - "proptest-derive 0.5.0", "reth-codecs", "reth-primitives-traits", "revm-primitives", diff --git a/crates/ethereum-forks/Cargo.toml b/crates/ethereum-forks/Cargo.toml index a1d25b571..c0c0f83fe 100644 --- a/crates/ethereum-forks/Cargo.toml +++ b/crates/ethereum-forks/Cargo.toml @@ -36,7 +36,6 @@ auto_impl.workspace = true [dev-dependencies] arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true -proptest-derive.workspace = true [features] default = ["std", "serde", "rustc-hash"] diff --git a/crates/net/eth-wire-types/Cargo.toml b/crates/net/eth-wire-types/Cargo.toml index 671883dae..a2df98965 100644 --- a/crates/net/eth-wire-types/Cargo.toml +++ b/crates/net/eth-wire-types/Cargo.toml @@ -38,7 +38,6 @@ alloy-chains = { workspace = true, features = ["arbitrary"] } arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true rand.workspace = true [features] diff --git a/crates/net/eth-wire/Cargo.toml b/crates/net/eth-wire/Cargo.toml index 2846c0f7c..355491783 100644 --- a/crates/net/eth-wire/Cargo.toml +++ b/crates/net/eth-wire/Cargo.toml @@ -56,7 +56,6 @@ secp256k1 = { workspace = true, features = [ arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true async-stream.workspace = true serde.workspace = true diff --git a/crates/primitives-traits/Cargo.toml b/crates/primitives-traits/Cargo.toml index b7eb8515f..ede1af20c 100644 --- a/crates/primitives-traits/Cargo.toml +++ b/crates/primitives-traits/Cargo.toml @@ -44,7 +44,6 @@ alloy-consensus = { workspace = true, features = ["arbitrary"] } arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true test-fuzz.workspace = true rand.workspace = true serde_json.workspace = true diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 3f44fc62c..55ccf3b33 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -51,7 +51,6 @@ zstd = { workspace = true, features = ["experimental"], optional = true } # arbitrary utils arbitrary = { workspace = true, features = ["derive"], optional = true } proptest = { workspace = true, optional = true } -# proptest-derive = { workspace = true, optional = true } [dev-dependencies] # eth @@ -67,7 +66,6 @@ assert_matches.workspace = true arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true rand.workspace = true serde_json.workspace = true test-fuzz.workspace = true diff --git a/crates/prune/types/Cargo.toml b/crates/prune/types/Cargo.toml index 4fd5b9336..13def8eaa 100644 --- a/crates/prune/types/Cargo.toml +++ b/crates/prune/types/Cargo.toml @@ -25,7 +25,6 @@ thiserror.workspace = true arbitrary = { workspace = true, features = ["derive"] } assert_matches.workspace = true proptest.workspace = true -proptest-derive.workspace = true proptest-arbitrary-interop.workspace = true serde_json.workspace = true test-fuzz.workspace = true diff --git a/crates/rpc/rpc-types/Cargo.toml b/crates/rpc/rpc-types/Cargo.toml index 2f52b907e..46f957d25 100644 --- a/crates/rpc/rpc-types/Cargo.toml +++ b/crates/rpc/rpc-types/Cargo.toml @@ -33,7 +33,6 @@ jsonrpsee-types = { workspace = true, optional = true } alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbitrary"] } arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true -proptest-derive.workspace = true rand.workspace = true similar-asserts.workspace = true bytes.workspace = true @@ -41,4 +40,4 @@ serde_json.workspace = true [features] default = ["jsonrpsee-types"] -arbitrary = ["alloy-primitives/arbitrary", "alloy-rpc-types/arbitrary"] \ No newline at end of file +arbitrary = ["alloy-primitives/arbitrary", "alloy-rpc-types/arbitrary"] diff --git a/crates/stages/types/Cargo.toml b/crates/stages/types/Cargo.toml index 76bb9f429..54b14b335 100644 --- a/crates/stages/types/Cargo.toml +++ b/crates/stages/types/Cargo.toml @@ -23,7 +23,6 @@ serde.workspace = true [dev-dependencies] arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true -proptest-derive.workspace = true proptest-arbitrary-interop.workspace = true test-fuzz.workspace = true rand.workspace = true diff --git a/crates/storage/codecs/Cargo.toml b/crates/storage/codecs/Cargo.toml index 4789ff6e1..dea997281 100644 --- a/crates/storage/codecs/Cargo.toml +++ b/crates/storage/codecs/Cargo.toml @@ -38,7 +38,6 @@ serde_json.workspace = true arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true -proptest-derive.workspace = true proptest-arbitrary-interop.workspace = true [features] diff --git a/crates/storage/db-api/Cargo.toml b/crates/storage/db-api/Cargo.toml index 087d3709d..2dd7b8713 100644 --- a/crates/storage/db-api/Cargo.toml +++ b/crates/storage/db-api/Cargo.toml @@ -58,7 +58,6 @@ iai-callgrind.workspace = true arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true paste.workspace = true diff --git a/crates/trie/common/Cargo.toml b/crates/trie/common/Cargo.toml index da5d5a828..3812016ff 100644 --- a/crates/trie/common/Cargo.toml +++ b/crates/trie/common/Cargo.toml @@ -38,7 +38,6 @@ arbitrary = { workspace = true, features = ["derive"] } assert_matches.workspace = true proptest.workspace = true proptest-arbitrary-interop.workspace = true -proptest-derive.workspace = true serde_json.workspace = true test-fuzz.workspace = true toml.workspace = true