uhttp 0.13.0

Simple http server for humans
Documentation
// #![deny(unused_crate_dependencies)]
mod result;

pub mod body;
pub mod constants;
pub mod http;
pub mod http1;

pub use http::*;
pub use result::*;

#[cfg(feature = "router")]
pub mod router;

#[cfg(feature = "websocket")]
pub mod websocket;

#[cfg(feature = "http2")]
pub mod http2;

#[cfg(feature = "file_server")]
pub mod file_server;