aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorJason Williams <willij87@mc-s083267.local>2015-12-02 23:45:02 +0000
committerJason Williams <willij87@mc-s083267.local>2015-12-03 07:32:07 +0000
commit1a8db9a07a0f7118488fb2ff120a92e3524c7b0e (patch)
tree315944f41af84002642196494d37b33a61dfe191 /components/script/lib.rs
parenta8cbc2864367da09fb31fb5f984a7b2d31b90b93 (diff)
downloadservo-1a8db9a07a0f7118488fb2ff120a92e3524c7b0e.tar.gz
servo-1a8db9a07a0f7118488fb2ff120a92e3524c7b0e.zip
now using external ref_slice instead of the std version
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;