aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-02-25 07:40:49 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-02-25 07:40:49 +0530
commitb4da844c038b9c71f694e2200cc39db045d13fef (patch)
treedbb117454f48948818a5d34e6ef628d9ce9689a1 /components/util/lib.rs
parente5f3c5b6d1f09f1d86e63b1d37ab3d02f19a3be3 (diff)
parenteb748852f23ef38e21206d7adf946c8d2f621f5d (diff)
downloadservo-b4da844c038b9c71f694e2200cc39db045d13fef.tar.gz
servo-b4da844c038b9c71f694e2200cc39db045d13fef.zip
Auto merge of #9679 - gmorenz:deque, r=pcwalton
Switch to external deque crate Fixes #9539 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9679) <!-- Reviewable:end -->
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r--components/util/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs
index 3ad19ea8907..881da2d5fd5 100644
--- a/components/util/lib.rs
+++ b/components/util/lib.rs
@@ -8,8 +8,6 @@
#![feature(custom_derive)]
#![cfg_attr(feature = "non-geckolib", feature(decode_utf16))]
#![feature(fnbox)]
-#![feature(heap_api)]
-#![feature(oom)]
#![feature(optin_builtin_traits)]
#![feature(plugin)]
#![feature(reflect_marker)]
@@ -25,6 +23,7 @@ extern crate app_units;
extern crate bitflags;
#[macro_use]
extern crate cssparser;
+extern crate deque;
extern crate euclid;
extern crate getopts;
extern crate heapsize;
@@ -51,7 +50,6 @@ use std::sync::Arc;
pub mod cache;
pub mod debug_utils;
-pub mod deque;
pub mod geometry;
pub mod ipc;
pub mod linked_list;