influxdb/metrics/Cargo.toml

27 lines
720 B
TOML
Raw Normal View History

2021-04-21 11:43:49 +00:00
[package]
name = "metrics"
version = "0.1.0"
authors = ["Edd Robinson <me@edd.io>"]
edition = "2018"
2021-04-29 15:51:21 +00:00
# This crate contains the application-specific abstraction of the metrics
# implementation for IOx. Any crate that wants to expose telemetry should use
# this crate.
2021-04-22 15:54:46 +00:00
#
2021-04-29 15:51:21 +00:00
# The crate exposes a special type of metrics registry which allows users to
# isolate their metrics from the rest of the system so they can be tested
2021-04-22 15:54:46 +00:00
# in isolation.
2021-04-21 11:43:49 +00:00
[dependencies] # In alphabetical order
dashmap = { version = "4.0.1" }
hashbrown = "0.11"
2021-04-21 11:43:49 +00:00
observability_deps = { path = "../observability_deps" }
opentelemetry-prometheus = "0.6"
parking_lot = "0.11.1"
prometheus = "0.12"
2021-04-22 15:54:46 +00:00
snafu = "0.6"
2021-04-21 11:43:49 +00:00
[dev-dependencies] # In alphabetical order