fastbloom 0.16.0

The fastest Bloom filter in Rust. No accuracy compromises. Full concurrency support and compatible with any hasher.
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 = "2021"
rust-version = "1.70"
name = "fastbloom"
version = "0.16.0"
authors = ["tomtomwombat"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The fastest Bloom filter in Rust. No accuracy compromises. Full concurrency support and compatible with any hasher."
homepage = "https://github.com/tomtomwombat/fastbloom/"
readme = "README.md"
keywords = [
    "data-structures",
    "bloom-filter",
    "bloomfilter",
    "no_std",
]
categories = [
    "data-structures",
    "caching",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tomtomwombat/fastbloom/"

[badges.maintenance]
status = "actively-developed"

[features]
default = [
    "std",
    "rand",
]
loom = ["dep:loom"]
rand = [
    "std",
    "dep:rand",
]
serde = [
    "dep:serde",
    "siphasher/serde_std",
]
std = []

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

[dependencies.foldhash]
version = "0.2.0"
default-features = false

[dependencies.libm]
version = "0.2"

[dependencies.loom]
version = "0.7.2"
optional = true

[dependencies.rand]
version = "0.9.0"
optional = true

[dependencies.serde]
version = "1.0.203"
features = ["derive"]
optional = true

[dependencies.siphasher]
version = "1.0.0"
default-features = false

[dev-dependencies.fastrand]
version = "2.3.0"

[dev-dependencies.serde_cbor]
version = "0.11.2"