mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
dep: rm unused dependencies (#10099)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -6375,8 +6375,6 @@ dependencies = [
|
||||
"reth-provider",
|
||||
"reth-prune",
|
||||
"reth-prune-types",
|
||||
"reth-revm",
|
||||
"reth-rpc",
|
||||
"reth-rpc-types",
|
||||
"reth-rpc-types-compat",
|
||||
"reth-stages",
|
||||
@ -6514,14 +6512,11 @@ dependencies = [
|
||||
"alloy-rlp",
|
||||
"alloy-trie",
|
||||
"derive_more",
|
||||
"nybbles",
|
||||
"once_cell",
|
||||
"op-alloy-rpc-types",
|
||||
"rand 0.8.5",
|
||||
"reth-ethereum-forks",
|
||||
"reth-network-peers",
|
||||
"reth-primitives-traits",
|
||||
"reth-rpc-types",
|
||||
"reth-trie-common",
|
||||
"serde",
|
||||
"serde_json",
|
||||
@ -6772,7 +6767,6 @@ dependencies = [
|
||||
"reth-storage-errors",
|
||||
"reth-trie-common",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"test-fuzz",
|
||||
]
|
||||
|
||||
@ -6814,7 +6808,6 @@ dependencies = [
|
||||
"generic-array",
|
||||
"parking_lot 0.12.3",
|
||||
"rand 0.8.5",
|
||||
"reth-chainspec",
|
||||
"reth-ethereum-forks",
|
||||
"reth-net-banlist",
|
||||
"reth-net-nat",
|
||||
@ -7279,7 +7272,6 @@ name = "reth-evm-optimism"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"reth-chainspec",
|
||||
"reth-consensus-common",
|
||||
"reth-ethereum-forks",
|
||||
"reth-evm",
|
||||
"reth-execution-errors",
|
||||
@ -8033,7 +8025,6 @@ dependencies = [
|
||||
"reth-rpc-types",
|
||||
"reth-transaction-pool",
|
||||
"revm",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tokio-stream",
|
||||
@ -8073,7 +8064,6 @@ dependencies = [
|
||||
"alloy-primitives",
|
||||
"alloy-rlp",
|
||||
"alloy-rpc-types",
|
||||
"alloy-trie",
|
||||
"arbitrary",
|
||||
"assert_matches",
|
||||
"bytes",
|
||||
@ -8082,7 +8072,6 @@ dependencies = [
|
||||
"derive_more",
|
||||
"k256",
|
||||
"modular-bitfield",
|
||||
"nybbles",
|
||||
"once_cell",
|
||||
"pprof",
|
||||
"proptest",
|
||||
@ -8099,12 +8088,10 @@ dependencies = [
|
||||
"secp256k1",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"sucds",
|
||||
"tempfile",
|
||||
"test-fuzz",
|
||||
"thiserror-no-std",
|
||||
"toml",
|
||||
"triehash",
|
||||
"zstd",
|
||||
]
|
||||
|
||||
@ -8483,13 +8470,11 @@ name = "reth-rpc-layer"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"alloy-rpc-types-engine",
|
||||
"assert_matches",
|
||||
"http",
|
||||
"jsonrpsee",
|
||||
"jsonrpsee-http-client",
|
||||
"pin-project",
|
||||
"reqwest",
|
||||
"tempfile",
|
||||
"tokio",
|
||||
"tower",
|
||||
"tracing",
|
||||
@ -8530,7 +8515,6 @@ dependencies = [
|
||||
"proptest",
|
||||
"rand 0.8.5",
|
||||
"serde_json",
|
||||
"similar-asserts",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@ -8831,7 +8815,6 @@ dependencies = [
|
||||
"alloy-rlp",
|
||||
"alloy-trie",
|
||||
"arbitrary",
|
||||
"assert_matches",
|
||||
"bytes",
|
||||
"derive_more",
|
||||
"hash-db",
|
||||
@ -8844,7 +8827,6 @@ dependencies = [
|
||||
"reth-primitives-traits",
|
||||
"revm-primitives",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"test-fuzz",
|
||||
"toml",
|
||||
]
|
||||
|
||||
@ -36,13 +36,10 @@ derive_more.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
# eth
|
||||
nybbles = { workspace = true, features = ["arbitrary"] }
|
||||
alloy-trie = { workspace = true, features = ["arbitrary"] }
|
||||
alloy-eips = { workspace = true, features = ["arbitrary"] }
|
||||
alloy-rlp = { workspace = true, features = ["arrayvec"] }
|
||||
alloy-genesis.workspace = true
|
||||
reth-rpc-types.workspace = true
|
||||
rand.workspace = true
|
||||
|
||||
# op
|
||||
op-alloy-rpc-types.workspace = true
|
||||
|
||||
@ -59,9 +59,7 @@ reth-provider = { workspace = true, features = ["test-utils"] }
|
||||
reth-evm = { workspace = true, features = ["test-utils"] }
|
||||
reth-network-p2p = { workspace = true, features = ["test-utils"] }
|
||||
reth-rpc-types-compat.workspace = true
|
||||
reth-rpc.workspace = true
|
||||
reth-tracing.workspace = true
|
||||
reth-revm.workspace = true
|
||||
reth-downloaders.workspace = true
|
||||
reth-evm-ethereum.workspace = true
|
||||
reth-ethereum-engine-primitives.workspace = true
|
||||
@ -78,5 +76,4 @@ optimism = [
|
||||
"reth-primitives/optimism",
|
||||
"reth-provider/optimism",
|
||||
"reth-blockchain-tree/optimism",
|
||||
"reth-rpc/optimism",
|
||||
]
|
||||
|
||||
@ -44,7 +44,6 @@ generic-array.workspace = true
|
||||
serde = { workspace = true, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
reth-chainspec.workspace = true
|
||||
assert_matches.workspace = true
|
||||
rand.workspace = true
|
||||
tokio = { workspace = true, features = ["macros"] }
|
||||
|
||||
@ -20,7 +20,6 @@ reth-revm.workspace = true
|
||||
reth-execution-errors.workspace = true
|
||||
reth-execution-types.workspace = true
|
||||
reth-prune-types.workspace = true
|
||||
reth-consensus-common.workspace = true
|
||||
|
||||
# Optimism
|
||||
reth-optimism-consensus.workspace = true
|
||||
|
||||
@ -36,7 +36,6 @@ tracing.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
revm.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
||||
[features]
|
||||
test-utils = []
|
||||
@ -59,8 +59,6 @@ reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
|
||||
revm-primitives = { workspace = true, features = ["arbitrary"] }
|
||||
reth-chainspec.workspace = true
|
||||
reth-codecs.workspace = true
|
||||
nybbles = { workspace = true, features = ["arbitrary"] }
|
||||
alloy-trie = { workspace = true, features = ["arbitrary"] }
|
||||
alloy-eips = { workspace = true, features = ["arbitrary"] }
|
||||
|
||||
assert_matches.workspace = true
|
||||
@ -71,10 +69,8 @@ rand.workspace = true
|
||||
serde_json.workspace = true
|
||||
test-fuzz.workspace = true
|
||||
toml.workspace = true
|
||||
triehash = "0.8"
|
||||
modular-bitfield.workspace = true
|
||||
|
||||
sucds = "0.8.1"
|
||||
|
||||
criterion.workspace = true
|
||||
pprof = { workspace = true, features = [
|
||||
@ -93,8 +89,6 @@ arbitrary = [
|
||||
"revm-primitives/arbitrary",
|
||||
"reth-chainspec?/arbitrary",
|
||||
"reth-ethereum-forks/arbitrary",
|
||||
"nybbles/arbitrary",
|
||||
"alloy-trie/arbitrary",
|
||||
"alloy-eips/arbitrary",
|
||||
"dep:arbitrary",
|
||||
"dep:proptest",
|
||||
|
||||
@ -22,7 +22,5 @@ tracing.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
reqwest.workspace = true
|
||||
assert_matches.workspace = true
|
||||
tokio = { workspace = true, features = ["macros"] }
|
||||
tempfile.workspace = true
|
||||
jsonrpsee = { workspace = true, features = ["server"] }
|
||||
|
||||
@ -34,7 +34,6 @@ alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbi
|
||||
arbitrary = { workspace = true, features = ["derive"] }
|
||||
proptest.workspace = true
|
||||
rand.workspace = true
|
||||
similar-asserts.workspace = true
|
||||
bytes.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
||||
|
||||
@ -43,7 +43,6 @@ reth-primitives = { workspace = true, features = ["arbitrary"] }
|
||||
reth-codecs.workspace = true
|
||||
|
||||
rand.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
||||
test-fuzz.workspace = true
|
||||
|
||||
|
||||
@ -35,10 +35,8 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
arbitrary = { workspace = true, features = ["derive"] }
|
||||
assert_matches.workspace = true
|
||||
proptest.workspace = true
|
||||
proptest-arbitrary-interop.workspace = true
|
||||
serde_json.workspace = true
|
||||
test-fuzz.workspace = true
|
||||
toml.workspace = true
|
||||
hash-db = "=0.15.2"
|
||||
|
||||
Reference in New Issue
Block a user