diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-07-30 17:56:19 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2015-07-30 18:01:41 +0200 |
commit | 6737be1fb14719b6ab2167f008b1c63051886f4a (patch) | |
tree | 9ffd8910f15748018a2faff6cb03803cda8b460d /components/script/lib.rs | |
parent | 85aa1658cc2e1b8bec9e8a67633c7d7bcd1364d2 (diff) | |
download | servo-6737be1fb14719b6ab2167f008b1c63051886f4a.tar.gz servo-6737be1fb14719b6ab2167f008b1c63051886f4a.zip |
Remove usage of the deprecated OwnedAsciiExt
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 16f73c85afd..459eff4bd82 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -4,6 +4,7 @@ #![feature(append)] #![feature(arc_unique)] +#![feature(ascii)] #![feature(as_slice)] #![feature(as_unsafe_cell)] #![feature(borrow_state)] @@ -17,7 +18,6 @@ #![feature(hashmap_hasher)] #![feature(mpsc_select)] #![feature(nonzero)] -#![feature(owned_ascii_ext)] #![feature(plugin)] #![feature(rc_unique)] #![feature(slice_chars)] |