aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-12-03 16:10:24 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-12-03 16:10:24 +0530
commit8ae008761f6bf19b7c912cf9e0bf2aa157f32dec (patch)
tree1417569833e67e87712750b83f9deb46aa4afddb /components/script/lib.rs
parent63762d2b52ee6026216d304c8826bf8b4a5fdd20 (diff)
parent1a8db9a07a0f7118488fb2ff120a92e3524c7b0e (diff)
downloadservo-8ae008761f6bf19b7c912cf9e0bf2aa157f32dec.tar.gz
servo-8ae008761f6bf19b7c912cf9e0bf2aa157f32dec.zip
Auto merge of #8787 - Jayflux:hotfix/8695, r=mbrubeck
now using external ref_slice instead of the std version fixed #8695 Fixes #8695. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8787) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs2
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;