metrics/metrics-exporter-tcp/Cargo.toml

35 lines
965 B
TOML
Raw Permalink Normal View History

[package]
2020-05-11 18:16:29 -07:00
name = "metrics-exporter-tcp"
version = "0.1.0"
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
edition = "2018"
license = "MIT"
2020-06-10 18:27:23 -07:00
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]
2020-06-16 18:48:04 -07:00
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"
2020-06-01 13:23:11 -07:00
tracing = "^0.1"
tracing-subscriber = "^0.2"