safebrowsing 0.1.0

Rust implementation of Google Safe Browsing Update API (v4)
Documentation
1
2
3
4
5
6
7
8
#![allow(unused)]
//! Re-export database types from the safebrowsing-db crate.

pub use safebrowsing_db::{ConcurrentDatabase, Database, DatabaseStats, InMemoryDatabase};

// Re-export RedbDatabase when the feature is enabled
#[cfg(feature = "redb")]
pub use safebrowsing_db_redb::RedbDatabase;