1 2 3 4 5 6 7 8
//! Minimal, low-level HTTP 1.1 protocol implementation //! //! This module is sans-IO; it doesn't use networking sockets. pub mod codec; pub mod error; pub mod header; pub mod recv; pub mod send;