base2histogram 0.2.3

A Rust histogram library using base-2 logarithmic bucketing for fast percentile estimation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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]