aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 879216a2e27..94cf931436b 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -7,13 +7,9 @@
#![feature(collections)]
#![feature(core)]
#![feature(custom_attribute)]
-#![feature(old_io)]
-#![feature(path)]
#![feature(plugin)]
#![feature(rustc_private)]
#![feature(std_misc)]
-#![feature(unicode)]
-#![feature(unsafe_destructor)]
#![deny(unsafe_code)]
#![allow(non_snake_case)]
@@ -39,8 +35,9 @@ extern crate js;
extern crate libc;
extern crate msg;
extern crate net_traits;
+extern crate num;
extern crate png;
-extern crate "rustc-serialize" as rustc_serialize;
+extern crate rustc_serialize;
extern crate time;
extern crate canvas;
extern crate profile_traits;
@@ -49,6 +46,7 @@ extern crate selectors;
extern crate util;
#[macro_use]
extern crate style;
+extern crate unicase;
extern crate url;
extern crate uuid;
extern crate string_cache;
@@ -68,4 +66,5 @@ pub mod script_task;
mod timers;
pub mod textinput;
mod devtools;
+mod horribly_inefficient_timers;
mod webdriver_handlers;