From 72de74c9eb38a2da5c5ccf1019a914b6e61f1efd Mon Sep 17 00:00:00 2001 From: Tatsuyuki Ishi Date: Thu, 24 Aug 2017 12:56:47 +0900 Subject: [PATCH] cargotest: purge deps --- Cargo.lock | 6 ------ tests/cargotest/Cargo.toml | 6 ------ tests/cargotest/lib.rs | 6 ------ 3 files changed, 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa7903667f9..aa376b65f0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,22 +125,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "cargotest" version = "0.1.0" dependencies = [ - "bufstream 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "cargo 0.22.0", "filetime 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)", "git2 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "hamcrest 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.28 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "tar 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] diff --git a/tests/cargotest/Cargo.toml b/tests/cargotest/Cargo.toml index dea88263844..fda9ddb5348 100644 --- a/tests/cargotest/Cargo.toml +++ b/tests/cargotest/Cargo.toml @@ -7,19 +7,13 @@ authors = ["Alex Crichton "] path = "lib.rs" [dependencies] -bufstream = "0.1" cargo = { path = "../.." } filetime = "0.1" flate2 = "0.2" git2 = { version = "0.6", default-features = false } hamcrest = "=0.1.1" hex = "0.2" -kernel32-sys = "0.2" -libc = "0.2" log = "0.3" -serde = "1.0" serde_json = "1.0" tar = { version = "0.4", default-features = false } -tempdir = "0.3" url = "1.1" -winapi = "0.2" diff --git a/tests/cargotest/lib.rs b/tests/cargotest/lib.rs index 99f5617ba3e..8275027372d 100644 --- a/tests/cargotest/lib.rs +++ b/tests/cargotest/lib.rs @@ -1,21 +1,15 @@ #![deny(warnings)] -extern crate bufstream; extern crate cargo; extern crate filetime; extern crate flate2; extern crate git2; extern crate hamcrest; extern crate hex; -extern crate libc; -extern crate serde; #[macro_use] extern crate serde_json; extern crate tar; -extern crate tempdir; extern crate url; -#[cfg(windows)] extern crate kernel32; -#[cfg(windows)] extern crate winapi; use std::ffi::OsStr; use std::time::Duration;