diff options
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 6b3f5ce8c8f..15a1c4c5db5 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -21,6 +21,7 @@ #![feature(rc_unique)] #![feature(slice_chars)] #![feature(str_utf16)] +#![feature(unicode)] #![feature(vec_push_all)] #![deny(unsafe_code)] @@ -49,6 +50,7 @@ extern crate msg; extern crate net_traits; extern crate num; extern crate rustc_serialize; +extern crate rustc_unicode; extern crate time; extern crate canvas; extern crate canvas_traits; |