From 23c86fac54b3ff90e505e3275deb79b6313b22a8 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Tue, 16 Apr 2019 21:35:28 +0200 Subject: [PATCH] Add bytes and futures dependency --- Cargo.lock | 2 ++ Cargo.toml | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5f98c6..5486c34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,6 +677,8 @@ version = "0.1.0" dependencies = [ "actix-web 1.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index ef8de3e..36c7176 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,8 +6,10 @@ edition = "2018" [dependencies] actix-web = "1.0.0-alpha.4" -git2 = "0.8.0" badge = "0.2.0" +bytes = "0.4.12" +futures = "0.1.25" +git2 = "0.8.0" openssl-probe = "0.1.2" -structopt = "0.2.15" pretty_env_logger = "0.3.0" +structopt = "0.2.15"