aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorAlan Jeffrey <ajeffrey@mozilla.com>2017-04-03 14:35:57 -0500
committerAlan Jeffrey <ajeffrey@mozilla.com>2017-05-17 09:01:05 -0500
commitaf8436c9be4c69c07265ab1095f89982b48cdd00 (patch)
tree0a4dbfaeb69c7a1741840e94ffb88139317ef295 /components/script/lib.rs
parentabb2985ffe96485b58f6b9e5f8b2dd3641d987b7 (diff)
downloadservo-af8436c9be4c69c07265ab1095f89982b48cdd00.tar.gz
servo-af8436c9be4c69c07265ab1095f89982b48cdd00.zip
Implemented Houdini worklets.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index c1bd886b927..703209604b0 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -10,10 +10,12 @@
#![feature(nonzero)]
#![feature(on_unimplemented)]
#![feature(optin_builtin_traits)]
+#![feature(option_entry)]
#![feature(plugin)]
#![feature(proc_macro)]
#![feature(stmt_expr_attributes)]
#![feature(try_from)]
+#![feature(unboxed_closures)]
#![feature(untagged_unions)]
#![deny(unsafe_code)]
@@ -46,7 +48,7 @@ extern crate encoding;
extern crate euclid;
extern crate fnv;
extern crate gfx_traits;
-extern crate heapsize;
+#[macro_use] extern crate heapsize;
#[macro_use] extern crate heapsize_derive;
#[macro_use] extern crate html5ever;
#[macro_use]
@@ -92,6 +94,7 @@ extern crate smallvec;
#[macro_use]
extern crate style;
extern crate style_traits;
+extern crate swapper;
extern crate time;
#[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))]
extern crate tinyfiledialogs;