fix(rustup): rustc 1.0.0-nightly (123a754cb 2015-03-24)

* fix `extern crate` declaration for rustc-serialize
* enable `into_cow` feature
* replace as_slice() calls by as_ref and enable `convert` feature
* use `core` feature in doc tests
This commit is contained in:
Florian Hartwig
2015-03-25 19:46:23 +01:00
parent e63a2dfc61
commit 3e456f00f9
24 changed files with 51 additions and 50 deletions

View File

@@ -1,6 +1,6 @@
#![doc(html_root_url = "https://hyperium.github.io/hyper/hyper/index.html")]
#![feature(core, collections, io,
std_misc, box_syntax, unsafe_destructor)]
box_syntax, unsafe_destructor, into_cow, convert)]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(test, feature(alloc, test))]
@@ -127,7 +127,7 @@
//! implement `Reader` and can be read to get the data out of a `Response`.
//!
extern crate "rustc-serialize" as serialize;
extern crate rustc_serialize as serialize;
extern crate time;
extern crate url;
extern crate openssl;