1
2
3
4
5
6
7
8
9
#![crate_name = "imap"]
#![crate_type = "lib"]

//! imap is a IMAP client for Rust.

extern crate openssl;
extern crate regex;

pub mod client;