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

@ -57,7 +57,6 @@ extern crate itoa;
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate lru_cache;
#[macro_use] extern crate malloc_size_of;
#[macro_use] extern crate malloc_size_of_derive;
#[allow(unused_extern_crates)]
@ -86,6 +85,7 @@ extern crate style_derive;
#[macro_use]
extern crate style_traits;
extern crate time;
extern crate uluru;
extern crate unicode_bidi;
#[allow(unused_extern_crates)]
extern crate unicode_segmentation;