hyper 0.5.2

A modern HTTP library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(warnings)]

#[macro_use]
// TODO: only import header!, blocked by https://github.com/rust-lang/rust/issues/25003
extern crate hyper;

// A header in the form of `X-Foo: some random string`
header! {
    (Foo, "X-Foo") => [String]
}

fn main() {
}