[package]
edition = "2024"
rust-version = "1.85"
name = "histogram"
version = "1.6.0"
authors = [
"Brian Martin <brian@iop.systems>",
"Yao Yue <yao@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"
[[example]]
name = "rezolus_memory"
path = "examples/rezolus_memory.rs"
[[test]]
name = "compaction"
path = "tests/compaction.rs"
[[test]]
name = "config_geometry"
path = "tests/config_geometry.rs"
[[test]]
name = "cumulative_queries"
path = "tests/cumulative_queries.rs"
[[test]]
name = "cumulative_transforms"
path = "tests/cumulative_transforms.rs"
[[test]]
name = "dense_merge"
path = "tests/dense_merge.rs"
[[test]]
name = "dense_queries"
path = "tests/dense_queries.rs"
[[test]]
name = "dense_reset"
path = "tests/dense_reset.rs"
[[test]]
name = "dense_sum"
path = "tests/dense_sum.rs"
[[test]]
name = "report_reuse"
path = "tests/report_reuse.rs"
[[test]]
name = "validated_deserialize"
path = "tests/validated_deserialize.rs"
[[bench]]
name = "cumulative_queries"
path = "benches/cumulative_queries.rs"
harness = false
[[bench]]
name = "cumulative_transforms"
path = "benches/cumulative_transforms.rs"
harness = false
[[bench]]
name = "dense_queries"
path = "benches/dense_queries.rs"
harness = false
[[bench]]
name = "dense_sum"
path = "benches/dense_sum.rs"
harness = false
[[bench]]
name = "histogram"
path = "benches/histogram.rs"
harness = false
[[bench]]
name = "report_reuse"
path = "benches/report_reuse.rs"
harness = false
[[bench]]
name = "snapshot_compaction"
path = "benches/snapshot_compaction.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.arrow]
version = "58.1.0"
[dev-dependencies.bincode]
version = "1.3.3"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.parquet]
version = "58.1.0"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.serde_json]
version = "1"