bloom_filter_rs/
lib.rs

1//! Implementation of a BloomFilter
2
3extern crate bit_vec;
4extern crate murmur3;
5
6mod bloom;
7pub use bloom::*;