[package]
edition = "2024"
name = "cuckoo-clock"
version = "0.1.3"
authors = [
"John Todd <jtodd@quad9.net>",
"Ensar Sarajčić <dev@ensarsarajcic.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cuckoo probabilistic filter with TTL, LRU, and counter features"
homepage = "https://github.com/Quad9DNS/cuckoo-clock"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Quad9DNS/cuckoo-clock"
[lib]
name = "cuckoo_clock"
path = "src/lib.rs"
[[test]]
name = "fp_rate"
path = "tests/fp_rate.rs"
[[bench]]
name = "filter"
path = "benches/filter.rs"
harness = false
[dependencies.rand]
version = "0.9.2"
features = ["thread_rng"]
default-features = false
[dev-dependencies.criterion]
version = "0.7"
default-features = false