broomfilter 0.1.0

A bloom filter that sweeps away your certainty. Probably.
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"
name = "broomfilter"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bloom filter that sweeps away your certainty. Probably."
readme = "README.md"
keywords = [
    "bloom-filter",
    "probabilistic",
    "data-structure",
    "broom",
    "maybe",
]
categories = ["data-structures"]
license = "MIT"

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

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

[dependencies.bitvec]
version = "1.0.1"

[dependencies.rand]
version = "0.10.0"

[dependencies.sha2]
version = "0.10.9"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.xxhash-rust]
version = "0.8.8"
features = ["xxh3"]

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]