dep: rm unused dependencies (#10099)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Thomas Coratger
2024-08-06 02:46:46 +02:00
committed by GitHub
parent 443f7d56ac
commit 61500238fb
11 changed files with 0 additions and 39 deletions

18
Cargo.lock generated
View File

@ -6375,8 +6375,6 @@ dependencies = [
"reth-provider", "reth-provider",
"reth-prune", "reth-prune",
"reth-prune-types", "reth-prune-types",
"reth-revm",
"reth-rpc",
"reth-rpc-types", "reth-rpc-types",
"reth-rpc-types-compat", "reth-rpc-types-compat",
"reth-stages", "reth-stages",
@ -6514,14 +6512,11 @@ dependencies = [
"alloy-rlp", "alloy-rlp",
"alloy-trie", "alloy-trie",
"derive_more", "derive_more",
"nybbles",
"once_cell", "once_cell",
"op-alloy-rpc-types", "op-alloy-rpc-types",
"rand 0.8.5",
"reth-ethereum-forks", "reth-ethereum-forks",
"reth-network-peers", "reth-network-peers",
"reth-primitives-traits", "reth-primitives-traits",
"reth-rpc-types",
"reth-trie-common", "reth-trie-common",
"serde", "serde",
"serde_json", "serde_json",
@ -6772,7 +6767,6 @@ dependencies = [
"reth-storage-errors", "reth-storage-errors",
"reth-trie-common", "reth-trie-common",
"serde", "serde",
"serde_json",
"test-fuzz", "test-fuzz",
] ]
@ -6814,7 +6808,6 @@ dependencies = [
"generic-array", "generic-array",
"parking_lot 0.12.3", "parking_lot 0.12.3",
"rand 0.8.5", "rand 0.8.5",
"reth-chainspec",
"reth-ethereum-forks", "reth-ethereum-forks",
"reth-net-banlist", "reth-net-banlist",
"reth-net-nat", "reth-net-nat",
@ -7279,7 +7272,6 @@ name = "reth-evm-optimism"
version = "1.0.3" version = "1.0.3"
dependencies = [ dependencies = [
"reth-chainspec", "reth-chainspec",
"reth-consensus-common",
"reth-ethereum-forks", "reth-ethereum-forks",
"reth-evm", "reth-evm",
"reth-execution-errors", "reth-execution-errors",
@ -8033,7 +8025,6 @@ dependencies = [
"reth-rpc-types", "reth-rpc-types",
"reth-transaction-pool", "reth-transaction-pool",
"revm", "revm",
"serde_json",
"thiserror", "thiserror",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
@ -8073,7 +8064,6 @@ dependencies = [
"alloy-primitives", "alloy-primitives",
"alloy-rlp", "alloy-rlp",
"alloy-rpc-types", "alloy-rpc-types",
"alloy-trie",
"arbitrary", "arbitrary",
"assert_matches", "assert_matches",
"bytes", "bytes",
@ -8082,7 +8072,6 @@ dependencies = [
"derive_more", "derive_more",
"k256", "k256",
"modular-bitfield", "modular-bitfield",
"nybbles",
"once_cell", "once_cell",
"pprof", "pprof",
"proptest", "proptest",
@ -8099,12 +8088,10 @@ dependencies = [
"secp256k1", "secp256k1",
"serde", "serde",
"serde_json", "serde_json",
"sucds",
"tempfile", "tempfile",
"test-fuzz", "test-fuzz",
"thiserror-no-std", "thiserror-no-std",
"toml", "toml",
"triehash",
"zstd", "zstd",
] ]
@ -8483,13 +8470,11 @@ name = "reth-rpc-layer"
version = "1.0.3" version = "1.0.3"
dependencies = [ dependencies = [
"alloy-rpc-types-engine", "alloy-rpc-types-engine",
"assert_matches",
"http", "http",
"jsonrpsee", "jsonrpsee",
"jsonrpsee-http-client", "jsonrpsee-http-client",
"pin-project", "pin-project",
"reqwest", "reqwest",
"tempfile",
"tokio", "tokio",
"tower", "tower",
"tracing", "tracing",
@ -8530,7 +8515,6 @@ dependencies = [
"proptest", "proptest",
"rand 0.8.5", "rand 0.8.5",
"serde_json", "serde_json",
"similar-asserts",
] ]
[[package]] [[package]]
@ -8831,7 +8815,6 @@ dependencies = [
"alloy-rlp", "alloy-rlp",
"alloy-trie", "alloy-trie",
"arbitrary", "arbitrary",
"assert_matches",
"bytes", "bytes",
"derive_more", "derive_more",
"hash-db", "hash-db",
@ -8844,7 +8827,6 @@ dependencies = [
"reth-primitives-traits", "reth-primitives-traits",
"revm-primitives", "revm-primitives",
"serde", "serde",
"serde_json",
"test-fuzz", "test-fuzz",
"toml", "toml",
] ]

View File

@ -36,13 +36,10 @@ derive_more.workspace = true
[dev-dependencies] [dev-dependencies]
# eth # eth
nybbles = { workspace = true, features = ["arbitrary"] }
alloy-trie = { workspace = true, features = ["arbitrary"] } alloy-trie = { workspace = true, features = ["arbitrary"] }
alloy-eips = { workspace = true, features = ["arbitrary"] } alloy-eips = { workspace = true, features = ["arbitrary"] }
alloy-rlp = { workspace = true, features = ["arrayvec"] } alloy-rlp = { workspace = true, features = ["arrayvec"] }
alloy-genesis.workspace = true alloy-genesis.workspace = true
reth-rpc-types.workspace = true
rand.workspace = true
# op # op
op-alloy-rpc-types.workspace = true op-alloy-rpc-types.workspace = true

View File

@ -59,9 +59,7 @@ reth-provider = { workspace = true, features = ["test-utils"] }
reth-evm = { workspace = true, features = ["test-utils"] } reth-evm = { workspace = true, features = ["test-utils"] }
reth-network-p2p = { workspace = true, features = ["test-utils"] } reth-network-p2p = { workspace = true, features = ["test-utils"] }
reth-rpc-types-compat.workspace = true reth-rpc-types-compat.workspace = true
reth-rpc.workspace = true
reth-tracing.workspace = true reth-tracing.workspace = true
reth-revm.workspace = true
reth-downloaders.workspace = true reth-downloaders.workspace = true
reth-evm-ethereum.workspace = true reth-evm-ethereum.workspace = true
reth-ethereum-engine-primitives.workspace = true reth-ethereum-engine-primitives.workspace = true
@ -78,5 +76,4 @@ optimism = [
"reth-primitives/optimism", "reth-primitives/optimism",
"reth-provider/optimism", "reth-provider/optimism",
"reth-blockchain-tree/optimism", "reth-blockchain-tree/optimism",
"reth-rpc/optimism",
] ]

View File

@ -44,7 +44,6 @@ generic-array.workspace = true
serde = { workspace = true, optional = true } serde = { workspace = true, optional = true }
[dev-dependencies] [dev-dependencies]
reth-chainspec.workspace = true
assert_matches.workspace = true assert_matches.workspace = true
rand.workspace = true rand.workspace = true
tokio = { workspace = true, features = ["macros"] } tokio = { workspace = true, features = ["macros"] }

View File

@ -20,7 +20,6 @@ reth-revm.workspace = true
reth-execution-errors.workspace = true reth-execution-errors.workspace = true
reth-execution-types.workspace = true reth-execution-types.workspace = true
reth-prune-types.workspace = true reth-prune-types.workspace = true
reth-consensus-common.workspace = true
# Optimism # Optimism
reth-optimism-consensus.workspace = true reth-optimism-consensus.workspace = true

View File

@ -36,7 +36,6 @@ tracing.workspace = true
[dev-dependencies] [dev-dependencies]
revm.workspace = true revm.workspace = true
serde_json.workspace = true
[features] [features]
test-utils = [] test-utils = []

View File

@ -59,8 +59,6 @@ reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
revm-primitives = { workspace = true, features = ["arbitrary"] } revm-primitives = { workspace = true, features = ["arbitrary"] }
reth-chainspec.workspace = true reth-chainspec.workspace = true
reth-codecs.workspace = true reth-codecs.workspace = true
nybbles = { workspace = true, features = ["arbitrary"] }
alloy-trie = { workspace = true, features = ["arbitrary"] }
alloy-eips = { workspace = true, features = ["arbitrary"] } alloy-eips = { workspace = true, features = ["arbitrary"] }
assert_matches.workspace = true assert_matches.workspace = true
@ -71,10 +69,8 @@ rand.workspace = true
serde_json.workspace = true serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true
toml.workspace = true toml.workspace = true
triehash = "0.8"
modular-bitfield.workspace = true modular-bitfield.workspace = true
sucds = "0.8.1"
criterion.workspace = true criterion.workspace = true
pprof = { workspace = true, features = [ pprof = { workspace = true, features = [
@ -93,8 +89,6 @@ arbitrary = [
"revm-primitives/arbitrary", "revm-primitives/arbitrary",
"reth-chainspec?/arbitrary", "reth-chainspec?/arbitrary",
"reth-ethereum-forks/arbitrary", "reth-ethereum-forks/arbitrary",
"nybbles/arbitrary",
"alloy-trie/arbitrary",
"alloy-eips/arbitrary", "alloy-eips/arbitrary",
"dep:arbitrary", "dep:arbitrary",
"dep:proptest", "dep:proptest",

View File

@ -22,7 +22,5 @@ tracing.workspace = true
[dev-dependencies] [dev-dependencies]
reqwest.workspace = true reqwest.workspace = true
assert_matches.workspace = true
tokio = { workspace = true, features = ["macros"] } tokio = { workspace = true, features = ["macros"] }
tempfile.workspace = true
jsonrpsee = { workspace = true, features = ["server"] } jsonrpsee = { workspace = true, features = ["server"] }

View File

@ -34,7 +34,6 @@ alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbi
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true proptest.workspace = true
rand.workspace = true rand.workspace = true
similar-asserts.workspace = true
bytes.workspace = true bytes.workspace = true
serde_json.workspace = true serde_json.workspace = true

View File

@ -43,7 +43,6 @@ reth-primitives = { workspace = true, features = ["arbitrary"] }
reth-codecs.workspace = true reth-codecs.workspace = true
rand.workspace = true rand.workspace = true
serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true

View File

@ -35,10 +35,8 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
[dev-dependencies] [dev-dependencies]
arbitrary = { workspace = true, features = ["derive"] } arbitrary = { workspace = true, features = ["derive"] }
assert_matches.workspace = true
proptest.workspace = true proptest.workspace = true
proptest-arbitrary-interop.workspace = true proptest-arbitrary-interop.workspace = true
serde_json.workspace = true
test-fuzz.workspace = true test-fuzz.workspace = true
toml.workspace = true toml.workspace = true
hash-db = "=0.15.2" hash-db = "=0.15.2"