Silence a warning in stylo unit tests

This commit is contained in:
Anthony Ramine 2017-05-17 14:00:22 +02:00
parent 3ea0c26e90
commit f935f2da01
3 changed files with 0 additions and 3 deletions

1
Cargo.lock generated
View file

@ -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",

View file

@ -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"}

View file

@ -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;