rsbloom 0.1.0

A simple bloom filter implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: test bench build

all: test bench build

test:
	@cargo test

bench:
	@cargo bench

build:
	@cargo build