dipstick 0.9.4

Fast, all-purpose metrics library decoupling instrumentation from reporting backends. Like logging frameworks but with counters, timers and gauges. Supports combined outputs (e.g. log + graphite), sampling, aggregation, scheduled push, etc.
Documentation
#!just
# Sane make-like command runner: https://github.com/casey/just

# Default target
all: format test examples bench lint

# Unit and doc tests
test:
	cargo test --no-default-features --features="doc-comment"

examples:
	cargo build --examples

bench:
	cargo +nightly bench --features="bench"

format:
	cargo fmt

lint:
	cargo clippy

clean:
	cargo clean

# Build all and then publish to crates.io.
publish: all
	cargo publish