chore(all): Move downcasting to a stable implementation.

This commit is contained in:
Jonathan Reem
2015-04-02 13:26:47 -07:00
parent 3dc8e7d6ff
commit 320d10d50d
4 changed files with 20 additions and 17 deletions

View File

@@ -5,6 +5,7 @@
#![cfg_attr(test, feature(test))]
//! # Hyper
//!
//! 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.
@@ -134,6 +135,8 @@ extern crate cookie;
extern crate unicase;
extern crate httparse;
extern crate num_cpus;
extern crate traitobject;
extern crate typeable;
#[macro_use]
extern crate log;