dipstick/Cargo.toml

37 lines
1.0 KiB
TOML

[workspace]
members = [
"./",
"examples/aggregate/",
]
[package]
name = "dipstick"
version = "0.3.3-pre"
authors = ["Francis Lalonde <fralalonde@gmail.com>"]
description = """A fast and modular metrics library decoupling app instrumentation from reporting backend.
Similar to popular logging frameworks, but with counters and timers.
Can be configured for combined outputs (log + statsd), random sampling, local aggregation of metrics, recurrent background publication, etc."""
documentation = "https://docs.rs/dipstick"
homepage = "https://github.com/fralalonde/dipstick"
repository = "https://github.com/fralalonde/dipstick"
readme = "README.md"
keywords = ["metrics", "statsd", "timer", "counter", "monitoring"]
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "fralalonde/dipstick", branch = "master" }
[dependencies]
lazy_static = "0.2.8"
cached = "0.4.1"
log = "0.3.8"
time = "0.1"
scheduled-executor = "0.3.0"
thread-local-object = "0.1.0"
num = "0.1.40"
error-chain = "0.10.0"
[features]
bench = []