dipstick 0.6.5

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
[workspace]
members = [
  "./",
  "examples/counter_timer_gauge/",
  "examples/multi_outs/",
  "examples/macro_outs/",
  "examples/aggregate_print/",
  "examples/summary_print/",
  "examples/async_print/",
  "examples/custom_publish/",
  "examples/raw_log/",
  "examples/graphite/",
  "examples/static_metrics/",
  "examples/scoped_print/",
  "examples/sampling/",
]

[package]
name = "dipstick"
version = "0.6.5"
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", "graphite", "timer", "monitoring"]
license = "MIT/Apache-2.0"
build = "build.rs"

[badges]
travis-ci = { repository = "fralalonde/dipstick", branch = "master" }

[dependencies]
log = { version = "0.3" }
time = "0.1"
lazy_static = "0.2"
derivative = "1.0"

[build-dependencies]
skeptic = "0.13"

[dev-dependencies]
skeptic = "0.13"

[dependencies.num]
default-features = false
version = "0.1"

[features]
bench = []

[package.metadata.release]
#sign-commit = true
#upload-doc = true
pre-release-replacements = [
  {file="README.md", search="^dipstick = \"[a-z0-9\\.-]+\"", replace="dipstick = \"{{version}}\""}
  ]