aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 63d190f010893ece24290b7f34ad784d832acfa8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

#[macro_use]
mod macros;

extern crate notmuch_sys as ffi_sys;
extern crate libc;

mod utils;
mod ffi;

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