//! A lightweight layer on top of [Hyper](https://hyper.rs/) //! to facilitate building web applications. #![cfg_attr(docsrs, feature(doc_cfg))] pub use mime; pub use httpdate; pub mod security; pub mod request; pub mod response; mod signed; #[cfg(feature="hyper_body")] #[cfg_attr(docsrs, doc(cfg(feature = "hyper_body")))] pub mod hyper_body; #[cfg(not(feature="hyper_body"))] use http; #[cfg(feature="hyper_body")] use hyper::http;