13 lines
192 B
Rust
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;
|