aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-05-05 09:11:30 -0500
committerbors-servo <metajack+bors@gmail.com>2015-05-05 09:11:30 -0500
commit49aed6555dbc008c1a378c5cbb303f5467232b6b (patch)
tree9146cdd7126ead59c57cacbaa04eda0f16761f65 /components/script/lib.rs
parent7b87085c1880c60aa3be5b3ec4572a0d93fd5537 (diff)
parentef8edd4e87aeb3cc71dfd9da2f69437080f5410e (diff)
downloadservo-49aed6555dbc008c1a378c5cbb303f5467232b6b.tar.gz
servo-49aed6555dbc008c1a378c5cbb303f5467232b6b.zip
Auto merge of #5935 - servo:rustup_2015-04-25, r=Ms2ger
r? everybody <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5935) <!-- Reviewable:end -->
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;