io-http 0.1.1

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

pub mod chunk;
pub mod chunk_stream;
pub mod read_headers;
pub mod request;
pub mod send;
pub mod version;