mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Fix unused crate warning in script_tests
This commit is contained in:
parent
1640ade0b3
commit
550e304a21
3 changed files with 0 additions and 3 deletions
1
components/servo/Cargo.lock
generated
1
components/servo/Cargo.lock
generated
|
@ -1911,7 +1911,6 @@ dependencies = [
|
||||||
"plugins 0.0.1",
|
"plugins 0.0.1",
|
||||||
"script 0.0.1",
|
"script 0.0.1",
|
||||||
"url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"util 0.0.1",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -12,5 +12,4 @@ doctest = false
|
||||||
msg = {path = "../../../components/msg"}
|
msg = {path = "../../../components/msg"}
|
||||||
plugins = {path = "../../../components/plugins"}
|
plugins = {path = "../../../components/plugins"}
|
||||||
script = {path = "../../../components/script"}
|
script = {path = "../../../components/script"}
|
||||||
util = {path = "../../../components/util"}
|
|
||||||
url = {version = "1.0.0", features = ["heap_size"]}
|
url = {version = "1.0.0", features = ["heap_size"]}
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
extern crate msg;
|
extern crate msg;
|
||||||
extern crate script;
|
extern crate script;
|
||||||
extern crate url;
|
extern crate url;
|
||||||
extern crate util;
|
|
||||||
|
|
||||||
#[cfg(test)] mod origin;
|
#[cfg(test)] mod origin;
|
||||||
#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
|
#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue