hyperx/
lib.rs

1#![deny(missing_docs)]
2#![deny(missing_debug_implementations)]
3#![deny(unused_extern_crates)]
4#![cfg_attr(all(test, feature = "nightly"), feature(test))]
5
6//! # hyper*x*
7//!
8//! Hyper is the low-level HTTP implementation for Rust. Hyper*x* is an
9//! e*x*traction of the hyper 0.11 typed header module, with minimized
10//! dependencies, for continued use with hyper 0.12 or later, where
11//! this module was removed in preference to the byte-oriented `http::header`
12//! module.
13//!
14//! See the [*header*](header/index.html) module for more details.
15
16extern crate base64;
17extern crate bytes;
18extern crate http;
19extern crate language_tags;
20pub extern crate mime;
21extern crate percent_encoding;
22extern crate httpdate;
23extern crate unicase;
24
25#[cfg(all(test, feature = "nightly"))]
26extern crate test;
27
28pub use error::{Result, Error};
29
30#[cfg(feature = "headers")]
31pub use header::Headers;
32
33pub use method::Method;
34
35mod error;
36mod method;
37pub mod header;