uhttp 0.5.0

Simple http server for humans
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(clippy::unused_io_amount)]
#![allow(dead_code)]
pub mod body;
pub mod constants;
pub mod http1;
#[cfg(feature = "mux")]
pub mod mux;
pub use http::StatusCode;
pub use tokio::io::AsyncReadExt;
pub use tokio::io::AsyncWriteExt;