histogram 1.0.0

A collection of histogram data structures
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 = "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"