mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 17:48:03 -05:00
24 lines
501 B
TOML
24 lines
501 B
TOML
[package]
|
|
name = "reth-metrics"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "reth metrics utilities"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-metrics-derive = { path = "./metrics-derive" }
|
|
|
|
# metrics
|
|
metrics = "0.20.1"
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
|
futures = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
common = ["tokio", "futures"]
|