asimov-imap-module 0.1.2

ASIMOV module for IMAP email import.
Documentation
// This is free and unencumbered software released into the public domain.

//#![no_std]
#![forbid(unsafe_code)]

mod capabilities;
pub use capabilities::*;

mod config;
pub use config::*;

mod error;
pub use error::*;

mod iterator;
pub use iterator::*;

mod local_cursor;
pub use local_cursor::*;

mod message;
pub use message::*;

mod options;
pub use options::*;

mod reader;
pub use reader::*;

mod remote_cursor;
pub use remote_cursor::*;

mod url;
pub use url::*;