io_http/rfc9112/mod.rs
1//! HTTP/1.1 message syntax ([RFC 9112]).
2//!
3//! I/O-free coroutines implementing the HTTP/1.1 wire protocol: no sockets, no
4//! async runtime, no `std`. Shared types (status codes, headers, request,
5//! response) live in [`crate::rfc9110`].
6//!
7//! [RFC 9112]: https://www.rfc-editor.org/rfc/rfc9112
8
9pub mod chunk;
10pub mod chunk_stream;
11pub mod read_headers;
12pub mod request;
13pub mod send;
14pub mod version;