style: Move lru_cache to its own crate.

One less crate pointlessly in components/.
This commit is contained in:
Emilio Cobos Álvarez 2017-11-15 16:11:05 +01:00
parent d117694ecc
commit 47b02658ec
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
7 changed files with 14 additions and 263 deletions

View file

@ -70,7 +70,6 @@ use atomic_refcell::{AtomicRefCell, AtomicRefMut};
use bloom::StyleBloom;
use context::{SelectorFlagsMap, SharedStyleContext, StyleContext};
use dom::{TElement, SendElement};
use lru_cache::{LRUCache, Entry};
use matching::MatchMethods;
use owning_ref::OwningHandle;
use properties::ComputedValues;
@ -85,6 +84,7 @@ use std::mem;
use std::ops::Deref;
use style_resolver::{PrimaryStyle, ResolvedElementStyles};
use stylist::Stylist;
use uluru::{LRUCache, Entry};
mod checks;