mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "reth-node-metrics"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
reth-metrics.workspace = true
|
|
reth-tasks.workspace = true
|
|
|
|
metrics.workspace = true
|
|
metrics-exporter-prometheus.workspace = true
|
|
metrics-process.workspace = true
|
|
metrics-util.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
jsonrpsee-server.workspace = true
|
|
http.workspace = true
|
|
http-body-util.workspace = true
|
|
bytes.workspace = true
|
|
tower.workspace = true
|
|
reqwest.workspace = true
|
|
|
|
tracing.workspace = true
|
|
eyre.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
jemalloc_pprof = { workspace = true, optional = true }
|
|
mappings = { version = "0.7", optional = true }
|
|
pprof_util = { version = "0.8", optional = true }
|
|
reth-fs-util = { workspace = true, optional = true }
|
|
tempfile = { workspace = true, optional = true }
|
|
tikv-jemalloc-ctl = { workspace = true, optional = true, features = ["stats"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
procfs = "0.17.0"
|
|
|
|
[dev-dependencies]
|
|
reqwest.workspace = true
|
|
socket2.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
jemalloc = ["dep:tikv-jemalloc-ctl"]
|
|
jemalloc-prof = ["jemalloc", "dep:jemalloc_pprof", "dep:mappings", "dep:pprof_util", "dep:reth-fs-util", "dep:tempfile"]
|
|
jemalloc-symbols = ["jemalloc-prof", "jemalloc_pprof?/symbolize"]
|