1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! An SMTP library for [Tokio](https://tokio.rs/).
//!
//! Currently, just the client is implemented. Documentation can be found in
//! [the client module](client/).

// FIXME: Add server protocol

extern crate emailaddress;
extern crate futures;
extern crate native_tls;
#[macro_use]
extern crate nom;
extern crate tokio_core;
extern crate tokio_proto;
extern crate tokio_service;
extern crate tokio_tls;

mod client;
mod request;
mod response;
mod util;

pub use client::*;
pub use request::*;
pub use response::*;