aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-05-17 14:00:22 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2017-05-18 09:57:24 +0200
commitf935f2da01c759ee9a0da9b7d7a68ed1a1cbad5f (patch)
tree5e3b9520dfce2e347ab57dfebcd5bf946c73aaca
parent3ea0c26e90abd451f637f378065f9873988cc30b (diff)
downloadservo-f935f2da01c759ee9a0da9b7d7a68ed1a1cbad5f.tar.gz
servo-f935f2da01c759ee9a0da9b7d7a68ed1a1cbad5f.zip
Silence a warning in stylo unit tests
-rw-r--r--Cargo.lock1
-rw-r--r--tests/unit/stylo/Cargo.toml1
-rw-r--r--tests/unit/stylo/lib.rs1
3 files changed, 0 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index af6d4733ef3..b21ff19f356 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2900,7 +2900,6 @@ dependencies = [
"geckoservo 0.0.1",
"libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "parking_lot 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"selectors 0.18.0",
"style 0.0.1",
"style_traits 0.0.1",
diff --git a/tests/unit/stylo/Cargo.toml b/tests/unit/stylo/Cargo.toml
index 8c6478be76e..46d9c6df281 100644
--- a/tests/unit/stylo/Cargo.toml
+++ b/tests/unit/stylo/Cargo.toml
@@ -21,7 +21,6 @@ env_logger = "0.4"
euclid = "0.11"
libc = "0.2"
log = {version = "0.3.5", features = ["release_max_level_info"]}
-parking_lot = "0.3"
selectors = {path = "../../../components/selectors", features = ["gecko_like_types"]}
style_traits = {path = "../../../components/style_traits"}
geckoservo = {path = "../../../ports/geckolib"}
diff --git a/tests/unit/stylo/lib.rs b/tests/unit/stylo/lib.rs
index 76b54a45b7d..fedbba703b9 100644
--- a/tests/unit/stylo/lib.rs
+++ b/tests/unit/stylo/lib.rs
@@ -7,7 +7,6 @@ extern crate cssparser;
extern crate env_logger;
extern crate geckoservo;
#[macro_use] extern crate log;
-extern crate parking_lot;
extern crate selectors;
#[macro_use] extern crate style;
extern crate style_traits;