rust-imap/src/lib.rs
2016-06-21 20:34:19 -04:00

13 lines
192 B
Rust

#![crate_name = "imap"]
#![crate_type = "lib"]
//! imap is a IMAP client for Rust.
extern crate openssl;
extern crate regex;
pub mod client;
pub mod mailbox;
#[cfg(test)]
mod mock_stream;