imag/libimagmail/src/lib.rs

17 lines
287 B
Rust
Raw Normal View History

2016-08-09 13:38:27 +00:00
#[macro_use] extern crate log;
extern crate mailparse;
extern crate semver;
extern crate toml;
2016-09-21 16:05:12 +00:00
extern crate filters;
2016-08-09 13:38:27 +00:00
#[macro_use] extern crate libimagerror;
extern crate libimagstore;
2016-09-21 16:15:19 +00:00
extern crate libimagref;
2016-08-09 13:38:27 +00:00
pub mod error;
2016-09-21 16:14:11 +00:00
pub mod hasher;
2016-10-04 12:19:36 +00:00
pub mod iter;
2016-09-21 16:14:11 +00:00
pub mod mail;
2016-08-09 13:38:27 +00:00
pub mod result;