exaloglog 0.2.0

ExaLogLog: space-efficient approximate distinct counting (Ertl 2024). 43% smaller than HyperLogLog with the same estimation error.
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 = "exaloglog"
version = "0.2.0"
authors = ["masumi-ryugo <abyo.software@gmail.com>"]
build = false
exclude = [
    "exaloglog-paper.pdf",
    "notes/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ExaLogLog: space-efficient approximate distinct counting (Ertl 2024). 43% smaller than HyperLogLog with the same estimation error."
homepage = "https://github.com/abyo-software/exaloglog-rs"
documentation = "https://docs.rs/exaloglog"
readme = "README.md"
keywords = [
    "hyperloglog",
    "cardinality",
    "sketch",
    "distinct",
    "counting",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/abyo-software/exaloglog-rs"

[lib]
name = "exaloglog"
path = "src/lib.rs"

[[example]]
name = "accuracy"
path = "examples/accuracy.rs"

[[example]]
name = "head_to_head"
path = "examples/head_to_head.rs"

[[bench]]
name = "insert"
path = "benches/insert.rs"
harness = false

[dependencies]

[dev-dependencies.criterion]
version = "0.5"
features = [
    "plotters",
    "cargo_bench_support",
]
default-features = false

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rand_xoshiro]
version = "0.6"