[package]
edition = "2024"
name = "hstats"
version = "0.2.0"
authors = ["Dilshod Tadjibaev @antimora"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Online histogram statistics calculations"
documentation = "https://docs.rs/hstats"
readme = "README.md"
keywords = [
"statistics",
"stats",
"histogram",
"online",
"rolling",
]
categories = ["science"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/antimora/hstats"
[lib]
name = "hstats"
path = "src/lib.rs"
[[example]]
name = "multi-thread"
path = "examples/multi-thread.rs"
[[example]]
name = "single-thread"
path = "examples/single-thread.rs"
[dependencies.num-traits]
version = "0.2.19"
features = ["libm"]
default-features = false
[dependencies.rolling-stats]
version = "0.8.0"
[dev-dependencies.float-cmp]
version = "0.10.0"
[dev-dependencies.rand]
version = "0.10.0"
[dev-dependencies.rand_distr]
version = "0.6.0"
[dev-dependencies.rayon]
version = "1.11.0"