aleph-filter 0.1.0

The Aleph Filter — an infinitely expandable probabilistic data structure with O(1) insert, query, and delete
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 = "aleph-filter"
version = "0.1.0"
authors = ["Neel Bansal"]
build = false
exclude = [
    "docs/*.aux",
    "docs/*.log",
    "docs/*.fls",
    "docs/*.fdb_latexmk",
    "docs/*.synctex.gz",
    "docs/*.toc",
    "docs/*.out",
    "docs/chapters/*.aux",
    "docs/aleph.bak",
    "benches/results/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Aleph Filter — an infinitely expandable probabilistic data structure with O(1) insert, query, and delete"
homepage = "https://github.com/NPX2218/aleph-filter"
documentation = "https://docs.rs/aleph-filter"
readme = "README.md"
keywords = [
    "filter",
    "probabilistic",
    "bloom",
    "cuckoo",
    "quotient",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/NPX2218/aleph-filter"

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

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

[[test]]
name = "aleph_filter_tests"
path = "tests/aleph_filter_tests.rs"

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

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

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

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

[dev-dependencies.cuckoofilter]
version = "0.5"

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

[dev-dependencies.serde]
version = "1"
features = ["derive"]

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

[dev-dependencies.xorf]
version = "0.11"
features = ["uniform-random"]