diff options
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index c42179e749f..45a6c4c114e 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -2,12 +2,18 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![feature(box_syntax)] +#![feature(collections)] +#![feature(core)] +#![feature(env)] #![feature(int_uint)] +#![feature(io)] +#![feature(path)] +#![feature(rustc_private)] +#![feature(std_misc)] #![feature(unboxed_closures)] -#![feature(box_syntax)] #![allow(missing_copy_implementations)] -#![allow(unstable)] extern crate "cookie" as cookie_rs; extern crate collections; @@ -17,7 +23,7 @@ extern crate png; #[macro_use] extern crate log; extern crate openssl; -extern crate "rustc-serialize" as rustc_serialize; +extern crate "rustc-serialize" as serialize; extern crate util; extern crate stb_image; extern crate time; |