mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: bump metrics (#4265)
This commit is contained in:
@ -17,7 +17,6 @@ reth-rlp.workspace = true
|
||||
reth-provider.workspace = true
|
||||
reth-payload-builder.workspace = true
|
||||
reth-tasks.workspace = true
|
||||
reth-metrics.workspace = true
|
||||
|
||||
## ethereum
|
||||
revm.workspace = true
|
||||
@ -27,5 +26,9 @@ tokio = { workspace = true, features = ["sync", "time"] }
|
||||
futures-core = "0.3"
|
||||
futures-util.workspace = true
|
||||
|
||||
# metrics
|
||||
reth-metrics.workspace = true
|
||||
metrics = "0.21.1" # Needed for `metrics-macro` to resolve the crate using `::metrics` notation
|
||||
|
||||
## misc
|
||||
tracing.workspace = true
|
||||
|
||||
@ -1,9 +1,6 @@
|
||||
//! Metrics for the payload builder impl
|
||||
|
||||
use reth_metrics::{
|
||||
metrics::{self, Counter},
|
||||
Metrics,
|
||||
};
|
||||
use reth_metrics::{metrics::Counter, Metrics};
|
||||
|
||||
/// Transaction pool metrics
|
||||
#[derive(Metrics)]
|
||||
|
||||
@ -15,7 +15,6 @@ reth-rpc-types.workspace = true
|
||||
reth-rlp.workspace = true
|
||||
reth-interfaces.workspace = true
|
||||
reth-revm-primitives = { path = "../../revm/revm-primitives" }
|
||||
reth-metrics.workspace = true
|
||||
|
||||
## ethereum
|
||||
revm-primitives.workspace = true
|
||||
@ -25,6 +24,10 @@ tokio = { workspace = true, features = ["sync"] }
|
||||
tokio-stream.workspace = true
|
||||
futures-util.workspace = true
|
||||
|
||||
## metrics
|
||||
reth-metrics.workspace = true
|
||||
metrics = "0.21.1" # Needed for `metrics-macro` to resolve the crate using `::metrics` notation
|
||||
|
||||
## misc
|
||||
thiserror.workspace = true
|
||||
sha2 = { version = "0.10", default-features = false }
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
//! Payload builder service metrics.
|
||||
|
||||
use reth_metrics::{
|
||||
metrics::{self, Counter, Gauge},
|
||||
metrics::{Counter, Gauge},
|
||||
Metrics,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user