humphrey 0.7.0

A Performance-Focused, Dependency-Free Web Server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Contains the Humphrey HTTP implementation.

pub mod address;
pub mod cookie;
pub mod cors;
pub mod date;
pub mod headers;
pub mod method;
pub mod mime;
pub mod proxy;
pub mod request;
pub mod response;
pub mod status;

pub use request::Request;
pub use response::Response;
pub use status::StatusCode;