Bug 1825052 [wpt PR 39246] - Update wpt metadata, a=testonly
[gecko.git] / third_party / rust / rust_cascade / README.md
blob206bff926754c6de2e2e29e91cd3f88e8b6717c5
1 # rust-cascade
2 A Bloom filter cascade implementation in rust. This can utilize one of two hash
3 functions:
5 * MurmurHash32, or
6 * SHA256, with an optional salt
8 This implementation is designed to match up with the Python [filter-cascade
9 project](https://pypi.org/project/filtercascade/)
10 [[github](https://github.com/mozilla/filter-cascade)]
12 See tests in src/lib.rs to get an idea of usage.