chore: remove unused deps (#5217)

This commit is contained in:
Matthias Seitz
2023-10-29 12:40:04 +01:00
committed by GitHub
parent 5f0e6912ad
commit 3eae861ae0
5 changed files with 2 additions and 16 deletions

7
Cargo.lock generated
View File

@ -5812,7 +5812,6 @@ dependencies = [
"reth-net-nat", "reth-net-nat",
"reth-network", "reth-network",
"reth-primitives", "reth-primitives",
"reth-stages",
"secp256k1 0.27.0", "secp256k1 0.27.0",
"serde", "serde",
"serde_json", "serde_json",
@ -6021,7 +6020,6 @@ dependencies = [
"clap", "clap",
"futures", "futures",
"modular-bitfield", "modular-bitfield",
"parity-scale-codec",
"parking_lot 0.12.1", "parking_lot 0.12.1",
"rand 0.8.5", "rand 0.8.5",
"reth-codecs", "reth-codecs",
@ -6031,7 +6029,6 @@ dependencies = [
"reth-nippy-jar", "reth-nippy-jar",
"reth-primitives", "reth-primitives",
"reth-rpc-types", "reth-rpc-types",
"reth-rpc-types-compat",
"revm-primitives", "revm-primitives",
"secp256k1 0.27.0", "secp256k1 0.27.0",
"thiserror", "thiserror",
@ -6206,10 +6203,8 @@ version = "0.1.0-alpha.10"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",
"bytes",
"cuckoofilter", "cuckoofilter",
"derive_more", "derive_more",
"hex",
"lz4_flex", "lz4_flex",
"memmap2 0.7.1", "memmap2 0.7.1",
"ph", "ph",
@ -6219,7 +6214,6 @@ dependencies = [
"tempfile", "tempfile",
"thiserror", "thiserror",
"tracing", "tracing",
"tracing-appender",
"zstd 0.12.4", "zstd 0.12.4",
] ]
@ -6251,7 +6245,6 @@ version = "0.1.0-alpha.10"
dependencies = [ dependencies = [
"alloy-primitives", "alloy-primitives",
"alloy-rlp", "alloy-rlp",
"alloy-sol-types",
"arbitrary", "arbitrary",
"assert_matches", "assert_matches",
"byteorder", "byteorder",

View File

@ -13,7 +13,6 @@ reth-network = { path = "../net/network" }
reth-net-nat = { path = "../net/nat" } reth-net-nat = { path = "../net/nat" }
reth-discv4 = { path = "../net/discv4" } reth-discv4 = { path = "../net/discv4" }
reth-downloaders = { path = "../net/downloaders" } reth-downloaders = { path = "../net/downloaders" }
reth-stages = { path = "../../crates/stages" }
reth-primitives = { path = "../primitives" } reth-primitives = { path = "../primitives" }
# io # io
@ -24,8 +23,8 @@ serde_json.workspace = true
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] } secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
# misc # misc
confy.workspace = true
tempfile.workspace = true tempfile.workspace = true
[dev-dependencies] [dev-dependencies]
confy.workspace = true
toml.workspace = true toml.workspace = true

View File

@ -12,14 +12,12 @@ reth-codecs = { path = "../storage/codecs" }
reth-nippy-jar = { path = "../storage/nippy-jar" } reth-nippy-jar = { path = "../storage/nippy-jar" }
reth-primitives.workspace = true reth-primitives.workspace = true
reth-rpc-types.workspace = true reth-rpc-types.workspace = true
reth-rpc-types-compat.workspace = true
reth-network-api.workspace = true reth-network-api.workspace = true
# TODO(onbjerg): We only need this for [BlockBody] # TODO(onbjerg): We only need this for [BlockBody]
reth-eth-wire = { path = "../net/eth-wire" } reth-eth-wire = { path = "../net/eth-wire" }
# eth # eth
revm-primitives.workspace = true revm-primitives.workspace = true
parity-scale-codec = { version = "3.2.1", features = ["bytes"] }
# async # async
async-trait.workspace = true async-trait.workspace = true

View File

@ -17,7 +17,6 @@ revm-primitives = { workspace = true, features = ["serde"] }
# ethereum # ethereum
alloy-primitives = { workspace = true, features = ["rand", "rlp"] } alloy-primitives = { workspace = true, features = ["rand", "rlp"] }
alloy-rlp = { workspace = true, features = ["arrayvec"] } alloy-rlp = { workspace = true, features = ["arrayvec"] }
alloy-sol-types.workspace = true
ethers-core = { workspace = true, default-features = false, optional = true } ethers-core = { workspace = true, default-features = false, optional = true }
# crypto # crypto

View File

@ -27,17 +27,14 @@ sucds = "~0.8"
memmap2 = "0.7.1" memmap2 = "0.7.1"
bincode = "1.3" bincode = "1.3"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
bytes.workspace = true
tempfile.workspace = true
tracing = "0.1.0" tracing = "0.1.0"
tracing-appender = "0.2"
anyhow = "1.0" anyhow = "1.0"
thiserror.workspace = true thiserror.workspace = true
hex = "*"
derive_more = "0.99" derive_more = "0.99"
[dev-dependencies] [dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] } rand = { version = "0.8", features = ["small_rng"] }
tempfile.workspace = true
[features] [features]