oxhttp 0.3.2

Simple implementation of HTTP 1.1 (both client and server)
Documentation
1
2
3
4
5
6
7
8
9
//! The HTTP model encoded in Rust type system.
//!
//! This reexport the [`http`](https://docs.rs/http) crate except for [`Body`].
//!
//! The main entry points are [`Request`] and [`Response`].
mod body;

pub use body::{Body, ChunkedTransferPayload};
pub use http::*;