style: Use rayon instead of our custom work queue.

This commit is contained in:
Emilio Cobos Álvarez 2016-10-07 12:22:06 +02:00
parent b7eb36fa84
commit 73917cce83
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
15 changed files with 126 additions and 525 deletions

View file

@ -49,7 +49,6 @@ extern crate cfg_if;
extern crate core;
#[macro_use]
extern crate cssparser;
extern crate deque;
extern crate encoding;
extern crate euclid;
extern crate fnv;
@ -60,7 +59,6 @@ extern crate heapsize;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate lazy_static;
#[cfg(feature = "gecko")] extern crate libc;
#[macro_use]
extern crate log;
#[allow(unused_extern_crates)]
@ -74,7 +72,7 @@ extern crate ordered_float;
extern crate owning_ref;
extern crate parking_lot;
extern crate quickersort;
extern crate rand;
extern crate rayon;
extern crate rustc_serialize;
extern crate selectors;
#[cfg(feature = "servo")]
@ -131,7 +129,6 @@ pub mod traversal;
#[allow(non_camel_case_types)]
pub mod values;
pub mod viewport;
pub mod workqueue;
use std::fmt;
use std::sync::Arc;