mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
chore(deps): rm unused deps (#1557)
This commit is contained in:
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -4357,7 +4357,6 @@ dependencies = [
|
|||||||
"futures",
|
"futures",
|
||||||
"human_bytes",
|
"human_bytes",
|
||||||
"jsonrpsee",
|
"jsonrpsee",
|
||||||
"metrics",
|
|
||||||
"metrics-exporter-prometheus",
|
"metrics-exporter-prometheus",
|
||||||
"metrics-util",
|
"metrics-util",
|
||||||
"proptest",
|
"proptest",
|
||||||
@ -4365,8 +4364,6 @@ dependencies = [
|
|||||||
"reth-db",
|
"reth-db",
|
||||||
"reth-discv4",
|
"reth-discv4",
|
||||||
"reth-downloaders",
|
"reth-downloaders",
|
||||||
"reth-eth-wire",
|
|
||||||
"reth-executor",
|
|
||||||
"reth-interfaces",
|
"reth-interfaces",
|
||||||
"reth-net-nat",
|
"reth-net-nat",
|
||||||
"reth-network",
|
"reth-network",
|
||||||
@ -4386,12 +4383,9 @@ dependencies = [
|
|||||||
"serde_json",
|
"serde_json",
|
||||||
"shellexpand",
|
"shellexpand",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
|
||||||
"tracing",
|
"tracing",
|
||||||
"tui",
|
"tui",
|
||||||
"walkdir",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@ -17,8 +17,6 @@ reth-stages = { path = "../../crates/stages"}
|
|||||||
reth-interfaces = { path = "../../crates/interfaces", features = ["test-utils"] }
|
reth-interfaces = { path = "../../crates/interfaces", features = ["test-utils"] }
|
||||||
reth-transaction-pool = { path = "../../crates/transaction-pool", features = ["test-utils"] }
|
reth-transaction-pool = { path = "../../crates/transaction-pool", features = ["test-utils"] }
|
||||||
reth-consensus = { path = "../../crates/consensus" }
|
reth-consensus = { path = "../../crates/consensus" }
|
||||||
reth-executor = { path = "../../crates/executor" }
|
|
||||||
reth-eth-wire = { path = "../../crates/net/eth-wire" }
|
|
||||||
reth-rpc-engine-api = { path = "../../crates/rpc/rpc-engine-api" }
|
reth-rpc-engine-api = { path = "../../crates/rpc/rpc-engine-api" }
|
||||||
reth-rpc-builder = { path = "../../crates/rpc/rpc-builder" }
|
reth-rpc-builder = { path = "../../crates/rpc/rpc-builder" }
|
||||||
reth-rpc = { path = "../../crates/rpc/rpc" }
|
reth-rpc = { path = "../../crates/rpc/rpc" }
|
||||||
@ -36,7 +34,6 @@ tracing = "0.1"
|
|||||||
|
|
||||||
# io
|
# io
|
||||||
fdlimit = "0.2.1"
|
fdlimit = "0.2.1"
|
||||||
walkdir = "2.3"
|
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
shellexpand = "3.0.0"
|
shellexpand = "3.0.0"
|
||||||
@ -44,7 +41,6 @@ dirs-next = "2.0.0"
|
|||||||
confy = "0.5"
|
confy = "0.5"
|
||||||
|
|
||||||
# rpc/metrics
|
# rpc/metrics
|
||||||
metrics = "0.20.1"
|
|
||||||
metrics-exporter-prometheus = { version = "0.11.0", features = ["http-listener"] }
|
metrics-exporter-prometheus = { version = "0.11.0", features = ["http-listener"] }
|
||||||
metrics-util = "0.14.0"
|
metrics-util = "0.14.0"
|
||||||
|
|
||||||
@ -54,9 +50,7 @@ proptest = "1.0"
|
|||||||
# misc
|
# misc
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
clap = { version = "4.0", features = ["derive", "cargo"] }
|
clap = { version = "4.0", features = ["derive", "cargo"] }
|
||||||
thiserror = "1.0"
|
|
||||||
tokio = { version = "1.21", features = ["sync", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.21", features = ["sync", "macros", "rt-multi-thread"] }
|
||||||
tokio-stream = "0.1"
|
|
||||||
futures = "0.3.25"
|
futures = "0.3.25"
|
||||||
tempfile = { version = "3.3.0" }
|
tempfile = { version = "3.3.0" }
|
||||||
backon = "0.4"
|
backon = "0.4"
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#![warn(missing_docs, unreachable_pub)]
|
#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)]
|
||||||
#![deny(unused_must_use, rust_2018_idioms)]
|
#![deny(unused_must_use, rust_2018_idioms)]
|
||||||
#![doc(test(
|
#![doc(test(
|
||||||
no_crate_inject,
|
no_crate_inject,
|
||||||
|
|||||||
Reference in New Issue
Block a user