diff options
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 4beb588047c..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; |