diff options
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r-- | components/layout/lib.rs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs index dd3f6bec269..e93fe905633 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -3,12 +3,17 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(alloc)] +#![feature(append)] +#![feature(arc_unique)] #![feature(box_syntax)] -#![feature(collections)] -#![feature(core)] #![feature(filling_drop)] +#![feature(float_consts)] +#![feature(hashmap_hasher)] +#![feature(heap_api)] +#![feature(mpsc_select)] #![feature(plugin)] -#![feature(std_misc)] +#![feature(raw)] +#![feature(slice_chars)] #![feature(str_char)] #![feature(unsafe_no_drop_flag)] |