bloomlib 0.1.5

A space and time efficient Bloom Filter implementation in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "bloomlib"
version = "0.1.5"
edition = "2021"
description = "A space and time efficient Bloom Filter implementation in Rust."
authors = ["Waclaw Kusnierczyk <wacus@pm.me>"]
license = "MIT"
repository = "https://github.com/wkusnierczyk/bloomlib"
exclude = [
    ".github/*"
]

[dependencies]
# No external dependencies required for the core logic to keep it lightweight.
# The standard library's hashing is used.