metrics/metrics-observer-yaml/Cargo.toml

23 lines
672 B
TOML
Raw Normal View History

2019-04-23 17:54:45 -07:00
[package]
name = "metrics-observer-yaml"
version = "0.1.0"
2019-04-23 17:54:45 -07:00
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
edition = "2018"
license = "MIT"
description = "A metrics-core compatible observer that outputs YAML."
2019-04-23 17:54:45 -07:00
homepage = "https://github.com/metrics-rs/metrics"
repository = "https://github.com/metrics-rs/metrics"
documentation = "https://docs.rs/metrics-observer-yaml"
2019-07-23 09:25:49 -07:00
readme = "README.md"
categories = ["development-tools::debugging"]
2019-07-23 09:25:49 -07:00
keywords = ["metrics", "telemetry", "yaml"]
2019-04-23 17:54:45 -07:00
[dependencies]
metrics-core = { path = "../metrics-core", version = "^0.5" }
2019-07-23 09:25:49 -07:00
metrics-util = { path = "../metrics-util", version = "^0.3" }
2019-04-23 17:54:45 -07:00
hdrhistogram = "^6.1"
2019-07-23 09:25:49 -07:00
serde_yaml = "^0.8"