pleat 0.1.0

Ribbon filters with pleated (partition-instead-of-sort) construction: build at Bloom-filter speed, verify by checksum.
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.87"
name = "pleat"
version = "0.1.0"
authors = ["Brian Sam-Bodden <bsb@integrallis.com>"]
build = false
include = [
    "src/**/*.rs",
    "tests/vectors/*.json",
    "benches/*.rs",
    "README.md",
    "SECURITY.md",
    "PORT_NOTES.md",
    "LICENSE",
    "LICENSE-APACHE",
    "CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ribbon filters with pleated (partition-instead-of-sort) construction: build at Bloom-filter speed, verify by checksum."
documentation = "https://docs.rs/pleat"
readme = "README.md"
keywords = [
    "ribbon-filter",
    "bloom-filter",
    "amq",
    "probabilistic",
    "filter",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/integrallis/pleat"

[package.metadata.docs.rs]
all-features = true

[features]
default = ["parallel"]
parallel = []

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

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

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

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

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

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

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