aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 1348c7ede0b78c93c9766bc193fdb073ed86e079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
mod macros;

extern crate libc;

mod utils;
mod ffi;

pub mod error;
pub mod database;
pub mod directory;

pub use database::Database;
pub use ffi::DatabaseOpenMode;