From 550e304a214ffa2073a21af7306f10bb9e11f272 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 24 May 2016 12:05:16 -0700 Subject: [PATCH] Fix unused crate warning in script_tests --- components/servo/Cargo.lock | 1 - tests/unit/script/Cargo.toml | 1 - tests/unit/script/lib.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index 5900683a181..43dbf2f05bd 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -1911,7 +1911,6 @@ dependencies = [ "plugins 0.0.1", "script 0.0.1", "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "util 0.0.1", ] [[package]] diff --git a/tests/unit/script/Cargo.toml b/tests/unit/script/Cargo.toml index 171ffb6920e..a851b3666f1 100644 --- a/tests/unit/script/Cargo.toml +++ b/tests/unit/script/Cargo.toml @@ -12,5 +12,4 @@ doctest = false msg = {path = "../../../components/msg"} plugins = {path = "../../../components/plugins"} script = {path = "../../../components/script"} -util = {path = "../../../components/util"} url = {version = "1.0.0", features = ["heap_size"]} diff --git a/tests/unit/script/lib.rs b/tests/unit/script/lib.rs index 2dbbd16ea7a..cab595e0500 100644 --- a/tests/unit/script/lib.rs +++ b/tests/unit/script/lib.rs @@ -8,7 +8,6 @@ extern crate msg; extern crate script; extern crate url; -extern crate util; #[cfg(test)] mod origin; #[cfg(all(test, target_pointer_width = "64"))] mod size_of;