1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2024-11-22 08:53:51 +01:00

Move hyper dependency to the client

This commit is contained in:
Valentin Brandl 2018-07-08 20:28:15 +02:00
parent 1036e5868c
commit 84c79ce9b4
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9
3 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -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)",
]

View File

@ -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"

View File

@ -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"