[package]
edition = "2024"
rust-version = "1.85.1"
name = "rust-hll"
version = "0.1.2"
authors = ["Zach Schoenberger"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of HLL that is compatible with the Aggregate Knowledge HLL Storage Spec"
documentation = "https://docs.rs/rust-hll"
readme = "README.md"
keywords = [
"hll",
"hyperloglog",
"aggregate-knowledge",
"storage-spec",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/zach-schoenberger/rust-hll"
[lib]
name = "rust_hll"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.flate2]
version = "1.0"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rayon]
version = "1.8"