Remove dead dependancies.

This commit is contained in:
Jordan Petridis 2018-01-20 07:41:09 +02:00
parent 7d9781052f
commit b3c4de320b
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
5 changed files with 2 additions and 28 deletions

6
Cargo.lock generated
View File

@ -644,12 +644,10 @@ dependencies = [
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"hammond-data 0.1.0",
"hyper 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
"mime_guess 1.8.3 (registry+https://github.com/rust-lang/crates.io-index)",
"reqwest 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -666,16 +664,12 @@ dependencies = [
"hammond-data 0.1.0",
"hammond-downloader 0.1.0",
"humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
"loggerv 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"send-cell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]

View File

@ -16,6 +16,3 @@ glob = "0.2.11"
[dependencies.hammond-data]
path = "../hammond-data"
[dev-dependencies]
tokio-core = "0.1.12"
hyper-tls = "0.1.2"

View File

@ -1,4 +1,5 @@
#![recursion_limit = "1024"]
#![deny(unused_extern_crates, unused)]
#[macro_use]
extern crate error_chain;
@ -13,8 +14,3 @@ extern crate tempdir;
pub mod downloader;
pub mod errors;
#[cfg(test)]
extern crate hyper_tls;
#[cfg(test)]
extern crate tokio_core;

View File

@ -18,7 +18,6 @@ log = "0.3.8"
loggerv = "0.6.0"
open = "1.2.1"
rayon = "0.9.0"
regex = "0.2.3"
send-cell = "0.1.2"
[dependencies.gtk]
@ -30,8 +29,3 @@ path = "../hammond-data"
[dependencies.hammond-downloader]
path = "../hammond-downloader"
[dev-dependencies]
hyper-tls = "0.1.2"
tokio-core = "0.1.12"
hyper = "0.11.12"

View File

@ -1,4 +1,5 @@
#![cfg_attr(feature = "cargo-clippy", allow(clone_on_ref_ptr, needless_pass_by_value))]
#![deny(unused_extern_crates, unused)]
extern crate gdk;
extern crate gdk_pixbuf;
@ -17,17 +18,9 @@ extern crate lazy_static;
extern crate log;
extern crate loggerv;
extern crate open;
extern crate regex;
extern crate send_cell;
// extern crate rayon;
#[cfg(test)]
extern crate hyper;
#[cfg(test)]
extern crate hyper_tls;
#[cfg(test)]
extern crate tokio_core;
// use rayon::prelude::*;
use log::LogLevel;