25 lines
737 B
TOML
25 lines
737 B
TOML
[package]
|
|
name = "nym-node-metrics"
|
|
description = "Crate defining various metrics for Nym Nodes (Mix Nodes and Gateways) such as ongoing connections, packets mixed, and packets dropped"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
[dependencies]
|
|
dashmap = { workspace = true }
|
|
futures = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
time = { workspace = true }
|
|
strum = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
nym-metrics = { workspace = true }
|
|
nym-statistics-common = { workspace = true }
|