diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-09-24 21:05:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-24 21:05:49 -0500 |
commit | dd6aae9d52af1f7ff55826543e044e5a3f9dd5e6 (patch) | |
tree | 0aa58cf683ab3ab51abbe717ce16344eec82775a | |
parent | 4628db14951667b7ffddb47bdcc0c5ed886cb3b1 (diff) | |
parent | 4f984a6428a0f497e311a0800efa55166c15aac6 (diff) | |
download | servo-dd6aae9d52af1f7ff55826543e044e5a3f9dd5e6.tar.gz servo-dd6aae9d52af1f7ff55826543e044e5a3f9dd5e6.zip |
Auto merge of #18621 - emilio:unused-crate, r=glennw
selectors: Remove unused crate.
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18621)
<!-- Reviewable:end -->
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | components/selectors/Cargo.toml | 1 | ||||
-rw-r--r-- | components/selectors/lib.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 49677bd5f4d..01d09471013 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2719,7 +2719,6 @@ dependencies = [ "cssparser 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru_cache 0.0.1", "malloc_size_of 0.0.1", "malloc_size_of_derive 0.0.1", "matches 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/components/selectors/Cargo.toml b/components/selectors/Cargo.toml index da9adffde93..0fa01f994b3 100644 --- a/components/selectors/Cargo.toml +++ b/components/selectors/Cargo.toml @@ -30,7 +30,6 @@ log = "0.3" fnv = "1.0" malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = { path = "../malloc_size_of_derive" } -lru_cache = { path = "../lru_cache" } phf = "0.7.18" precomputed-hash = "0.1" servo_arc = { path = "../servo_arc" } diff --git a/components/selectors/lib.rs b/components/selectors/lib.rs index 0805a53041f..49c107e73d0 100644 --- a/components/selectors/lib.rs +++ b/components/selectors/lib.rs @@ -10,7 +10,6 @@ #[macro_use] extern crate log; #[macro_use] extern crate matches; extern crate fnv; -extern crate lru_cache; extern crate malloc_size_of; #[macro_use] extern crate malloc_size_of_derive; extern crate phf; |