mirror of
https://github.com/servo/servo.git
synced 2025-08-04 05:00:08 +01:00
Switch to external deque crate
This commit is contained in:
parent
ab381cf951
commit
21e5d0d046
5 changed files with 23 additions and 422 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue