[package]
edition = "2024"
rust-version = "1.85"
name = "histogram"
version = "1.0.0"
authors = ["Brian Martin <brian@iop.systems>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of histogram data structures"
homepage = "https://github.com/iopsystems/histogram"
readme = "README.md"
keywords = [
"histogram",
"metrics",
"statistics",
"percentile",
"hdrhistogram",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iopsystems/histogram"
[features]
schemars = [
"dep:schemars",
"serde",
]
serde = ["dep:serde"]
[lib]
name = "histogram"
path = "src/lib.rs"
[[bench]]
name = "histogram"
path = "benches/histogram.rs"
harness = false
[dependencies.schemars]
version = "1.2"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.rand]
version = "0.10"