safe_http 0.1.0-beta.4

Simple and safe HTTP types.
Documentation
#![forbid(unsafe_code)]

pub mod header_map;
mod header_name;
mod header_value;
pub mod header_values;
mod method;
mod request;
mod response;
mod rfc;
mod status;
mod version;

pub use header_map::HeaderMap;
pub use header_name::{HeaderName, InvalidHeaderName};
pub use header_value::{HeaderValue, InvalidHeaderValue};
pub use header_values::HeaderValues;
pub use method::{InvalidMethod, Method};
pub use request::{RequestHead, RequestLine};
pub use response::{ResponseHead, ResponseLine};
pub use status::{InvalidStatusCode, StatusCode};
pub use version::Version;