Fix unused crate warning in script_tests

This commit is contained in:
Matt Brubeck 2016-05-24 12:05:16 -07:00
parent 1640ade0b3
commit 550e304a21
3 changed files with 0 additions and 3 deletions

View file

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

View file

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

View file

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