diff --git a/rust/chg/Cargo.lock b/rust/chg/Cargo.lock --- a/rust/chg/Cargo.lock +++ b/rust/chg/Cargo.lock @@ -43,9 +43,11 @@ dependencies = [ "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-hglib 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-process 0.2.2 (git+https://github.com/alexcrichton/tokio-process)", + "tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] diff --git a/rust/chg/Cargo.toml b/rust/chg/Cargo.toml --- a/rust/chg/Cargo.toml +++ b/rust/chg/Cargo.toml @@ -9,10 +9,12 @@ license = "GPL-2.0+" bytes = "0.4" futures = "0.1" libc = "0.2" +log = { version = "0.4", features = ["std"] } tokio = "0.1" tokio-hglib = "0.2" # TODO: "^0.2.3" once released. we need AsRawFd support. tokio-process = { git = "https://github.com/alexcrichton/tokio-process" } +tokio-timer = "0.2" [build-dependencies] cc = "1.0"