[package]
edition = "2024"
rust-version = "1.85"
name = "base2histogram"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust histogram library using base-2 logarithmic bucketing for fast percentile estimation"
homepage = "https://github.com/drmingdrmer/base2histogram"
documentation = "https://docs.rs/base2histogram"
readme = "README.md"
keywords = [
"histogram",
"percentile",
"metrics",
"latency",
]
categories = [
"algorithms",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/drmingdrmer/base2histogram"
[lib]
name = "base2histogram"
path = "src/lib.rs"
[[bin]]
name = "accuracy"
path = "src/bin/accuracy.rs"
[[bin]]
name = "bench"
path = "src/bin/bench.rs"
[[bin]]
name = "rescale_accuracy"
path = "src/bin/rescale_accuracy.rs"
[[test]]
name = "basic_usage"
path = "tests/basic_usage.rs"
[[test]]
name = "sliding_window"
path = "tests/sliding_window.rs"
[dependencies]