base2histogram 0.1.2

A Rust histogram library using base-2 logarithmic bucketing for fast percentile estimation
Documentation
all: check

test:
	cargo test

fmt:
	cargo fmt --all

fmt-check:
	cargo fmt --all -- --check

lint:
	cargo clippy --all-targets --all-features -- -D warnings

doc:
	RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items

check: fmt-check lint test doc

clean:
	cargo clean

.PHONY: all test fmt fmt-check lint doc check clean