mirror of
https://github.com/vbrandl/bind9-api.git
synced 2024-11-22 15:23:52 +01:00
Move hyper dependency to the client
This commit is contained in:
parent
1036e5868c
commit
84c79ce9b4
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -193,6 +193,7 @@ dependencies = [
|
|||||||
"crypto 0.1.0",
|
"crypto 0.1.0",
|
||||||
"data 0.1.0",
|
"data 0.1.0",
|
||||||
"failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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)",
|
"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)",
|
"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)",
|
"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"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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 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)",
|
"serde_derive 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -10,6 +10,7 @@ clap = "2.32.0"
|
|||||||
crypto = { path = "../crypto" }
|
crypto = { path = "../crypto" }
|
||||||
data = { path = "../data" }
|
data = { path = "../data" }
|
||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
|
hyper = "0.11"
|
||||||
log = "0.4.3"
|
log = "0.4.3"
|
||||||
openssl-probe = "0.1.2"
|
openssl-probe = "0.1.2"
|
||||||
pretty_env_logger = "0.2.3"
|
pretty_env_logger = "0.2.3"
|
||||||
|
@ -6,6 +6,5 @@ license = "MIT/Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
hyper = "0.11"
|
|
||||||
serde = "1.0.69"
|
serde = "1.0.69"
|
||||||
serde_derive = "1.0.69"
|
serde_derive = "1.0.69"
|
Loading…
Reference in New Issue
Block a user