Skip to content

Commit b7be5bf

Browse files
committed
run: switch to tokio 0.1 and rewrite log capture
1 parent 4c00f2e commit b7be5bf

File tree

4 files changed

+91
-155
lines changed

4 files changed

+91
-155
lines changed

Cargo.lock

Lines changed: 26 additions & 46 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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ error-chain = "0.12"
2121
failure = "0.1.3"
2222
flate2 = "1"
2323
futures = "0.1.13"
24-
futures-cpupool = "0.1.5"
2524
http = "0.1.10"
2625
hyper = "0.12.8"
2726
lazy_static = "1.0"
@@ -53,10 +52,8 @@ structopt-derive = "0.2"
5352
tar = "0.4.0"
5453
tempfile = "3.0.0"
5554
tera = "0.11.7"
56-
tokio-core = "0.1.7"
57-
tokio-io = "0.1.1"
58-
tokio-process = "0.1.2"
59-
tokio-timer = "0.1.1"
55+
tokio = "0.1.11"
56+
tokio-process = "0.2.3"
6057
toml = "0.4.6"
6158
url = "1.1"
6259
walkdir = "2"

src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ extern crate csv;
1313
extern crate failure;
1414
extern crate flate2;
1515
extern crate futures;
16-
extern crate futures_cpupool;
1716
extern crate http;
1817
extern crate hyper;
1918
#[macro_use]
@@ -49,10 +48,8 @@ extern crate slog_term;
4948
extern crate tar;
5049
extern crate tempfile;
5150
extern crate tera;
52-
extern crate tokio_core;
53-
extern crate tokio_io;
51+
extern crate tokio;
5452
extern crate tokio_process;
55-
extern crate tokio_timer;
5653
#[cfg_attr(test, macro_use)]
5754
extern crate toml;
5855
#[macro_use]

0 commit comments

Comments
 (0)