aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-01-31 14:36:05 +0100
committerMatt Brubeck <mbrubeck@limpet.net>2015-02-11 14:48:34 -0800
commitd5dd1d658e5d79701fb9d028479a0fcb26a033fa (patch)
tree0c243afe9d7d82695d16bd43d72e88600e4414ef /components/util/lib.rs
parentbc6882bdefc318402a46ede1494eb79339705c21 (diff)
downloadservo-d5dd1d658e5d79701fb9d028479a0fcb26a033fa.tar.gz
servo-d5dd1d658e5d79701fb9d028479a0fcb26a033fa.zip
Upgrade to rustc ba2f13ef0 2015-02-04
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r--components/util/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs
index a1d356a4645..045760a037d 100644
--- a/components/util/lib.rs
+++ b/components/util/lib.rs
@@ -6,6 +6,9 @@
#![feature(plugin)]
#![feature(int_uint)]
#![feature(box_syntax)]
+#![feature(optin_builtin_traits)]
+#![feature(core, rustc_private, hash, alloc)]
+#![feature(collections, libc, std_misc)]
#![allow(missing_copy_implementations)]
#![allow(unstable)]
@@ -13,6 +16,7 @@
#[macro_use] extern crate log;
extern crate alloc;
+#[macro_use] extern crate bitflags;
extern crate collections;
extern crate cssparser;
extern crate geom;