diff options
author | Greg Morenz <morenzg@gmail.com> | 2016-02-17 11:05:37 -0500 |
---|---|---|
committer | Greg Morenz <morenzg@gmail.com> | 2016-02-17 11:05:37 -0500 |
commit | 21e5d0d04621e741109df217731902864ee029c6 (patch) | |
tree | 02130ea5eed928e9009c5c9fe512775044d4edac /components/util/lib.rs | |
parent | ab381cf951f3e556d0f4c1f2107a311b0d275f91 (diff) | |
download | servo-21e5d0d04621e741109df217731902864ee029c6.tar.gz servo-21e5d0d04621e741109df217731902864ee029c6.zip |
Switch to external deque crate
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 3a039c58da8..8444768a415 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; |