summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 0e047f5ccaa02ff0802f827df674e27d853577c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate futures;
extern crate new_tokio_smtp;
extern crate mail_types as mail;
extern crate mail_common;
extern crate mail_headers as headers;
#[macro_use]
extern crate failure;

mod resolve_all;

pub mod error;
mod request;
mod send_mail;

pub use self::request::*;
pub use self::send_mail::*;