headers-ext 0.0.2

typed HTTP headers
Documentation
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]

//! dox

extern crate base64;
#[macro_use]
extern crate bitflags;
extern crate bytes;
extern crate headers_core;
#[macro_use]
extern crate headers_derive;
extern crate http;
extern crate mime;
extern crate sha1;
extern crate time;

pub use headers_core::{
    Header,
    HeaderMapExt,
    ToValues,
    Values,
};

pub use http::HeaderMap;

pub use http::header::{
    HeaderName,
    HeaderValue,
};

mod common;
mod util;

pub use self::common::*;