metrics/metrics-exporter-tcp/Cargo.toml

35 lines
965 B
TOML

[package]
name = "metrics-exporter-tcp"
version = "0.1.0"
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
edition = "2018"
license = "MIT"
description = "A metrics-compatible exporter that outputs metrics to clients over TCP."
homepage = "https://github.com/metrics-rs/metrics"
repository = "https://github.com/metrics-rs/metrics"
documentation = "https://docs.rs/metrics-exporter-tcp"
readme = "README.md"
categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "tcp"]
[dependencies]
metrics = { version = "0.13.0-alpha.0", path = "../metrics", features = ["std"] }
metrics-util = { version = "0.4.0-alpha.0", path = "../metrics-util" }
bytes = "^0.5"
crossbeam-channel = "^0.4"
prost = "^0.6"
prost-types = "^0.6"
mio = { version = "^0.7", features = ["os-poll", "tcp"] }
tracing = "^0.1"
[build-dependencies]
prost-build = "^0.5"
built = "^0.3"
[dev-dependencies]
quanta = "^0.5"
tracing = "^0.1"
tracing-subscriber = "^0.2"