From 84c79ce9b4ee812ec9accb2ab59ed96585cb6d7d Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 8 Jul 2018 20:28:15 +0200 Subject: [PATCH] Move hyper dependency to the client --- Cargo.lock | 2 +- client/Cargo.toml | 1 + data/Cargo.toml | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec597db..c4f687d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,6 +193,7 @@ dependencies = [ "crypto 0.1.0", "data 0.1.0", "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.27 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.3 (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.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -434,7 +435,6 @@ name = "data" version = "0.1.0" dependencies = [ "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.11.27 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/client/Cargo.toml b/client/Cargo.toml index c205d0f..075d487 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -10,6 +10,7 @@ clap = "2.32.0" crypto = { path = "../crypto" } data = { path = "../data" } failure = "0.1.1" +hyper = "0.11" log = "0.4.3" openssl-probe = "0.1.2" pretty_env_logger = "0.2.3" diff --git a/data/Cargo.toml b/data/Cargo.toml index 32c1674..faf4999 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -6,6 +6,5 @@ license = "MIT/Apache-2.0" [dependencies] failure = "0.1.1" -hyper = "0.11" serde = "1.0.69" serde_derive = "1.0.69" \ No newline at end of file