geckolib: Remove unused crates.

This commit is contained in:
Emilio Cobos Álvarez 2017-03-11 13:38:22 +01:00
parent 396fb62ca8
commit 75fa30c994
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
3 changed files with 0 additions and 6 deletions

2
Cargo.lock generated
View file

@ -921,11 +921,9 @@ dependencies = [
name = "geckoservo" name = "geckoservo"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"app_units 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atomic_refcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "atomic_refcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cssparser 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"euclid 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -13,11 +13,9 @@ crate-type = ["staticlib", "rlib"]
bindgen = ["style/use_bindgen"] bindgen = ["style/use_bindgen"]
[dependencies] [dependencies]
app_units = "0.4"
atomic_refcell = "0.1" atomic_refcell = "0.1"
cssparser = "0.12" cssparser = "0.12"
env_logger = {version = "0.4", default-features = false} # disable `regex` to reduce code size env_logger = {version = "0.4", default-features = false} # disable `regex` to reduce code size
euclid = "0.11"
lazy_static = "0.2" lazy_static = "0.2"
libc = "0.2" libc = "0.2"
log = {version = "0.3.5", features = ["release_max_level_info"]} log = {version = "0.3.5", features = ["release_max_level_info"]}

View file

@ -4,11 +4,9 @@
#![deny(warnings)] #![deny(warnings)]
extern crate app_units;
extern crate atomic_refcell; extern crate atomic_refcell;
extern crate cssparser; extern crate cssparser;
extern crate env_logger; extern crate env_logger;
extern crate euclid;
#[macro_use] extern crate lazy_static; #[macro_use] extern crate lazy_static;
extern crate libc; extern crate libc;
#[macro_use] extern crate log; #[macro_use] extern crate log;