diff options
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 4867bac20c0..bd84d33884a 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -2,13 +2,16 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![feature(alloc)] -#![feature(plugin)] +#![feature(arc_unique)] #![feature(box_syntax)] -#![feature(core)] -#![feature(collections)] -#![feature(hash)] -#![feature(custom_attribute, custom_derive)] +#![feature(core_intrinsics)] +#![feature(custom_attribute)] +#![feature(custom_derive)] +#![feature(hasher_write)] +#![feature(plugin)] +#![feature(vec_push_all)] +#![feature(vec_push_all)] + #![plugin(string_cache_plugin)] #![plugin(plugins)] |