diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
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; |