diff options
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/lib.rs | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 8f693f7782d..def826fb377 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -2,13 +2,27 @@ * 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(append)] +#![feature(arc_unique)] +#![feature(as_unsafe_cell)] +#![feature(borrow_state)] +#![feature(box_raw)] #![feature(box_syntax)] -#![feature(collections)] #![feature(core)] +#![feature(core_intrinsics)] #![feature(custom_attribute)] +#![feature(drain)] +#![feature(hashmap_hasher)] +#![feature(mpsc_select)] +#![feature(nonzero)] +#![feature(owned_ascii_ext)] #![feature(plugin)] -#![feature(std_misc)] +#![feature(rc_unique)] +#![feature(slice_chars)] +#![feature(slice_position_elem)] +#![feature(str_utf16)] +#![feature(vec_from_raw_buf)] +#![feature(vec_push_all)] #![deny(unsafe_code)] #![allow(non_snake_case)] |