pub mod hyper; mod cookies; mod method; mod content_type; // TODO: Removed from Rocket in favor of a more flexible HTTP library. pub use hyper::mime; pub use self::method::Method; pub use self::hyper::StatusCode; pub use self::content_type::ContentType; pub use self::cookies::{Cookie, Cookies};