mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
26 lines
570 B
TOML
26 lines
570 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# metrics
|
|
metrics.workspace = true
|
|
metrics-derive.workspace = true
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
|
futures = { workspace = true, optional = true }
|
|
tokio-util = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
common = ["tokio", "futures", "tokio-util"]
|