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

View File

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

View File

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

View File

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

View File

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