[dependencies.fastbloom]
default-features = false
version = "0.11.0"
[dependencies.rand_core]
version = "0.6.4"
[dev-dependencies.rand_core]
features = ["getrandom"]
version = "0.6.4"
[lib]
name = "rotating_bloom_filter"
path = "src/lib.rs"
[lints.clippy]
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
checked_conversions = "warn"
implicit_saturating_sub = "warn"
panic = "warn"
panic_in_result_fn = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
unused_lifetimes = "warn"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[package]
authors = ["eaon <eaon@posteo.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A probabilistic data structure that rotates out old items to maintain recent membership."
edition = "2024"
license = "EUPL-1.2"
name = "rotating-bloom-filter"
readme = "README.md"
repository = "https://codeberg.org/reachable-systems/reach/src/branch/main/common/rotating-bloom-filter"
resolver = "2"
version = "0.1.0"