cargotest: purge deps
authorTatsuyuki Ishi <ishitatsuyuki@gmail.com>
Thu, 24 Aug 2017 03:56:47 +0000 (12:56 +0900)
committerTatsuyuki Ishi <ishitatsuyuki@gmail.com>
Thu, 24 Aug 2017 04:00:04 +0000 (13:00 +0900)
Cargo.lock
tests/cargotest/Cargo.toml
tests/cargotest/lib.rs

index fa7903667f92e7eec1e6c2992521dc219e08860c..aa376b65f0bcc73dc13521436f7a679bc308c103 100644 (file)
@@ -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]]
index dea88263844089054e9d6154a9ffcfd4d118c2bd..fda9ddb53480db777efe743551df37448dbafeb5 100644 (file)
@@ -7,19 +7,13 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
 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"
index 99f5617ba3e676c869897c032676502390bea9b5..8275027372dfcc1b2a3653800c950f39d0ee5e57 100644 (file)
@@ -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;