dipstick 0.4.9

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
# Customizing release-flow

[tasks.default]
description = "GAGAGA"
alias = "GAGA-flow"

[tasks.pre-publish]
dependencies = [
    "update-readme",
    "git-add",
]

[tasks.update-readme]
description = "Update the README using cargo readme."
script = [
    "#!/usr/bin/env bash",
    "cargo readme > README.md",
]

[tasks.post-publish]
dependencies = [
    "update-examples",
]

[tasks.update-examples]
description = "Update the examples dependencies."
command = "cargo"
args = ["update", "-p", "dipstick"]