Remove dead dependancies.
This commit is contained in:
parent
7d9781052f
commit
b3c4de320b
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -644,12 +644,10 @@ dependencies = [
|
|||||||
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"hammond-data 0.1.0",
|
"hammond-data 0.1.0",
|
||||||
"hyper 0.11.12 (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)",
|
|
||||||
"log 0.3.9 (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)",
|
"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)",
|
"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)",
|
"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]]
|
[[package]]
|
||||||
@ -666,16 +664,12 @@ dependencies = [
|
|||||||
"hammond-data 0.1.0",
|
"hammond-data 0.1.0",
|
||||||
"hammond-downloader 0.1.0",
|
"hammond-downloader 0.1.0",
|
||||||
"humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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)",
|
"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)",
|
"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)",
|
"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)",
|
"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)",
|
"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)",
|
"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]]
|
[[package]]
|
||||||
|
|||||||
@ -16,6 +16,3 @@ glob = "0.2.11"
|
|||||||
[dependencies.hammond-data]
|
[dependencies.hammond-data]
|
||||||
path = "../hammond-data"
|
path = "../hammond-data"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
tokio-core = "0.1.12"
|
|
||||||
hyper-tls = "0.1.2"
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
#![recursion_limit = "1024"]
|
#![recursion_limit = "1024"]
|
||||||
|
#![deny(unused_extern_crates, unused)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate error_chain;
|
extern crate error_chain;
|
||||||
@ -13,8 +14,3 @@ extern crate tempdir;
|
|||||||
|
|
||||||
pub mod downloader;
|
pub mod downloader;
|
||||||
pub mod errors;
|
pub mod errors;
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate hyper_tls;
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate tokio_core;
|
|
||||||
|
|||||||
@ -18,7 +18,6 @@ log = "0.3.8"
|
|||||||
loggerv = "0.6.0"
|
loggerv = "0.6.0"
|
||||||
open = "1.2.1"
|
open = "1.2.1"
|
||||||
rayon = "0.9.0"
|
rayon = "0.9.0"
|
||||||
regex = "0.2.3"
|
|
||||||
send-cell = "0.1.2"
|
send-cell = "0.1.2"
|
||||||
|
|
||||||
[dependencies.gtk]
|
[dependencies.gtk]
|
||||||
@ -30,8 +29,3 @@ path = "../hammond-data"
|
|||||||
|
|
||||||
[dependencies.hammond-downloader]
|
[dependencies.hammond-downloader]
|
||||||
path = "../hammond-downloader"
|
path = "../hammond-downloader"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
hyper-tls = "0.1.2"
|
|
||||||
tokio-core = "0.1.12"
|
|
||||||
hyper = "0.11.12"
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
#![cfg_attr(feature = "cargo-clippy", allow(clone_on_ref_ptr, needless_pass_by_value))]
|
#![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;
|
||||||
extern crate gdk_pixbuf;
|
extern crate gdk_pixbuf;
|
||||||
@ -17,17 +18,9 @@ extern crate lazy_static;
|
|||||||
extern crate log;
|
extern crate log;
|
||||||
extern crate loggerv;
|
extern crate loggerv;
|
||||||
extern crate open;
|
extern crate open;
|
||||||
extern crate regex;
|
|
||||||
extern crate send_cell;
|
extern crate send_cell;
|
||||||
// extern crate rayon;
|
// extern crate rayon;
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate hyper;
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate hyper_tls;
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate tokio_core;
|
|
||||||
|
|
||||||
// use rayon::prelude::*;
|
// use rayon::prelude::*;
|
||||||
use log::LogLevel;
|
use log::LogLevel;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user