mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
style: Move lru_cache to its own crate.
One less crate pointlessly in components/.
This commit is contained in:
parent
d117694ecc
commit
47b02658ec
7 changed files with 14 additions and 263 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue