bloom-lib 1.0.0

Probabilistic data structure library: Bloom filters, Cuckoo filters, Count-Min Sketch, HyperLogLog, MinHash, and Top-K. Tunable false-positive rates, serializable state, merge support, and streaming-safe updates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Normalize line endings to LF in the repository and on checkout for every
# platform. Without this, the GitHub Windows runner (git `autocrlf=true`)
# checks source out with CRLF, and `cargo fmt --all -- --check` fails because
# `rustfmt.toml` pins `newline_style = "Unix"`.
* text=auto eol=lf

# Binary files — never normalize.
*.bin   binary
*.png   binary
*.jpg   binary
*.ico   binary

# Keep development-only paths out of `git archive` source tarballs.
/.dev             export-ignore
/.github          export-ignore
/tests            export-ignore
/.gitignore       export-ignore
/.editorconfig    export-ignore