Skip to content

Commit ac04d2e

Browse files
committed
Auto merge of #4069 - alexcrichton:remove-unused-dep, r=alexcrichton
Remove chrono as a dependency Turns out we don't use it!
2 parents 3973598 + 852968e commit ac04d2e

File tree

4 files changed

+2
-34
lines changed

4 files changed

+2
-34
lines changed

Cargo.lock

Lines changed: 0 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ name = "cargo"
1717
path = "src/cargo/lib.rs"
1818

1919
[dependencies]
20-
chrono = "0.3.0"
2120
crates-io = { path = "src/crates-io", version = "0.9" }
2221
crossbeam = "0.2"
2322
curl = "0.4.6"
@@ -57,10 +56,10 @@ psapi-sys = "0.1"
5756
winapi = "0.2"
5857

5958
[dev-dependencies]
60-
hamcrest = "=0.1.1"
6159
bufstream = "0.1"
62-
filetime = "0.1"
6360
cargotest = { path = "tests/cargotest" }
61+
filetime = "0.1"
62+
hamcrest = "=0.1.1"
6463

6564
[[bin]]
6665
name = "cargo"

src/cargo/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#[macro_use] extern crate log;
66
#[macro_use] extern crate serde_derive;
77
#[macro_use] extern crate serde_json;
8-
extern crate chrono;
98
extern crate crates_io as registry;
109
extern crate crossbeam;
1110
extern crate curl;

tests/new.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
extern crate cargo;
22
extern crate cargotest;
3-
extern crate chrono;
43
extern crate hamcrest;
54
extern crate tempdir;
65

0 commit comments

Comments
 (0)