//! The sans-I/O HTTP/1.x protocol core: value types plus the [`H1Conn`] engine.
//!
//! Nothing in this module performs I/O. The types here describe HTTP messages
//! and the [`H1Conn`] state machine turns a byte stream into [`Request`]s and
//! serializes [`Response`]s back into bytes. Runtimes in [`crate::rt`] supply
//! the sockets.
pub use ;
pub use Headers;
pub use Method;
pub use Request;
pub use ;
pub use StatusCode;
pub use Version;
pub use http_date;
pub use ;