diff options
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 583f837bfbf..f652100bc49 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -20,7 +20,6 @@ #![feature(nonzero)] #![feature(on_unimplemented)] #![feature(plugin)] -#![feature(ref_slice)] #![feature(slice_patterns)] #![feature(str_utf16)] #![feature(unicode)] @@ -61,6 +60,7 @@ extern crate offscreen_gl_context; #[macro_use] extern crate profile_traits; extern crate rand; +extern crate ref_slice; extern crate rustc_serialize; extern crate rustc_unicode; extern crate script_traits; |