From 375dbeff1eb904aee94929ceec08f65d47bde3c5 Mon Sep 17 00:00:00 2001 From: Adenilson Cavalcanti Date: Wed, 18 Mar 2015 16:26:16 -0700 Subject: [PATCH] Squashing a few warnings. --- components/servo/lib.rs | 2 +- components/servo/main.rs | 2 +- components/util/lib.rs | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 52f4595b41e..6b080f66193 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -2,7 +2,7 @@ * 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(core, env, libc, path, rustc_private, std_misc, thread_local)] +#![feature(libc, path, rustc_private, thread_local)] #[macro_use] extern crate log; diff --git a/components/servo/main.rs b/components/servo/main.rs index f0d338d9c93..4bef932e562 100644 --- a/components/servo/main.rs +++ b/components/servo/main.rs @@ -2,7 +2,7 @@ * 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(env, os, start)] +#![feature(start)] #[cfg(target_os="android")] extern crate libc; diff --git a/components/util/lib.rs b/components/util/lib.rs index 094bd292897..87a9469f450 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -12,14 +12,11 @@ #![feature(io)] #![feature(optin_builtin_traits)] #![feature(old_io)] -#![feature(old_path)] -#![feature(page_size)] #![feature(path)] #![feature(path_ext)] #![feature(plugin)] #![feature(rustc_private)] #![feature(std_misc)] -#![feature(str_words)] #![feature(unicode)] #![feature(unsafe_destructor)]