mini_async_http 0.1.0

Mini async http server based on mio
Documentation
#![allow(dead_code)]

/// mini-async-http is a tiny http server. I have built it in order to practive and learn the rust language.
mod aioserver;
mod http;
mod request;
mod response;

pub use aioserver::server::ServerHandle;
pub use aioserver::AIOServer;
pub use http::parser::ParseError;
pub use http::BuildError;
pub use http::Headers;
pub use http::Method;
pub use http::Version;
pub use request::Request;
pub use request::RequestBuilder;
pub use response::Reason;
pub use response::Response;
pub use response::ResponseBuilder;