argus_dedupe/lib.rs
1pub mod bloom;
2pub mod hybrid;
3pub mod seen;
4pub mod set_trait;
5pub mod simhash;
6
7#[cfg(feature = "redis")]
8pub mod redis;
9
10pub use bloom::BloomDeduplicator;
11pub use hybrid::{HybridSeenSet, HybridStats};
12pub use seen::SeenUrlSet;
13pub use set_trait::SeenSet;
14pub use simhash::Simhash;
15
16#[cfg(feature = "redis")]
17pub use redis::RedisSeenSet;