hyper-0.10.1 has been yanked.
hyper
A Modern HTTP library for Rust.
Documentation
Overview
Hyper is a fast, modern HTTP implementation written in and for Rust. It is a low-level typesafe abstraction over raw HTTP, providing an elegant layer over "stringly-typed" HTTP.
Hyper offers both an HTTP client and server which can be used to drive complex web applications written entirely in Rust.
The documentation is located at http://hyperium.github.io/hyper.
Example
Hello World Server:
extern crate hyper;
use Server;
use Request;
use Response;
Client:
extern crate hyper;
use Read;
use Client;
use Connection;