Remove unused dependency on util from geckolib.

This commit is contained in:
Ms2ger 2016-08-23 09:05:17 +02:00
parent 581e69f8ba
commit fe6b0b845d
3 changed files with 0 additions and 3 deletions

View file

@ -15,7 +15,6 @@ dependencies = [
"style 0.0.1", "style 0.0.1",
"style_traits 0.0.1", "style_traits 0.0.1",
"url 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"util 0.0.1",
] ]
[[package]] [[package]]

View file

@ -23,4 +23,3 @@ selectors = "0.11"
style = {path = "../../components/style", features = ["gecko"]} style = {path = "../../components/style", features = ["gecko"]}
style_traits = {path = "../../components/style_traits"} style_traits = {path = "../../components/style_traits"}
url = "1.2" url = "1.2"
util = {path = "../../components/util"}

View file

@ -15,7 +15,6 @@ extern crate selectors;
extern crate style; extern crate style;
extern crate style_traits; extern crate style_traits;
extern crate url; extern crate url;
extern crate util;
mod context; mod context;
mod data; mod data;