axol-http 0.1.6

Axol Web Framework HTTP wrapper
Documentation
pub mod body;
pub mod extensions;
pub mod header;
pub mod method;
pub mod request;
pub mod response;
pub mod status;

pub use body::Body;
pub use extensions::Extensions;
pub use method::Method;
pub use request::{Request, RequestPartsRef};
pub use response::Response;
pub use status::StatusCode;

#[doc(hidden)]
pub use http;
pub use http::uri;
pub use http::uri::Uri;
pub use http::version;
pub use http::version::Version;
/// re-export source crate
#[doc(hidden)]
pub use http_body;

pub use headers as typed_headers;
pub use mime;