aboutsummaryrefslogtreecommitdiffstats
path: root/components/profile/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-04-23 00:14:02 +0200
committerJosh Matthews <josh@joshmatthews.net>2015-05-05 10:07:34 -0400
commitef8edd4e87aeb3cc71dfd9da2f69437080f5410e (patch)
tree9146cdd7126ead59c57cacbaa04eda0f16761f65 /components/profile/lib.rs
parent7b87085c1880c60aa3be5b3ec4572a0d93fd5537 (diff)
downloadservo-ef8edd4e87aeb3cc71dfd9da2f69437080f5410e.tar.gz
servo-ef8edd4e87aeb3cc71dfd9da2f69437080f5410e.zip
Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.
Diffstat (limited to 'components/profile/lib.rs')
-rw-r--r--components/profile/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/components/profile/lib.rs b/components/profile/lib.rs
index 3d6e91e5dcc..ab60d36f86e 100644
--- a/components/profile/lib.rs
+++ b/components/profile/lib.rs
@@ -5,12 +5,8 @@
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]
-#![cfg_attr(target_os="linux", feature(io))]
-#![feature(old_io)]
#![cfg_attr(target_os="linux", feature(page_size))]
#![feature(rustc_private)]
-#![feature(std_misc)]
-#![cfg_attr(target_os="linux", feature(str_words))]
#[macro_use] extern crate log;
@@ -22,7 +18,7 @@ extern crate profile_traits;
extern crate regex;
#[cfg(target_os="macos")]
extern crate task_info;
-extern crate "time" as std_time;
+extern crate time as std_time;
extern crate util;
pub mod mem;