uhttp 0.12.0

Simple http server for humans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![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;