updates for hyper 0.13 release

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-12-12 13:06:40 +01:00
parent bf7b939bdf
commit 6d152f8930
3 changed files with 10 additions and 8 deletions

View File

@ -16,8 +16,8 @@ syn = { version = "1.0", features = [ "full" ] }
[dev-dependencies]
bytes = "0.4"
futures-preview = { version = "0.3.0-alpha" }
http = "0.1"
futures = "0.3"
http = "0.2"
proxmox = { path = "../proxmox" }
serde = "1.0"
serde_derive = "1.0"

View File

@ -7,8 +7,8 @@ authors = [ "Wolfgang Bumiller <w.bumiller@proxmox.com>" ]
[dependencies]
bytes = "0.4"
failure = "0.1"
futures-preview = "0.3.0-alpha"
http = "0.1"
futures = "0.3"
http = "0.2"
proxmox-tools = { version = "0.1", path = "../proxmox-tools" }
regex = "1.0"
rustyline = "5.0.4"
@ -18,7 +18,7 @@ serde_json = "1.0"
textwrap = "0.11"
url = "1.7"
hyper = { version = "0.13.0-alpha.1", optional = true }
hyper = { version = "0.13", optional = true }
[dev-dependencies]
lazy_static = "1.3"

View File

@ -8,14 +8,16 @@ authors = [
]
[dependencies]
proxmox-api = { path = "../proxmox-api" }
proxmox-api = { path = "../proxmox-api", default-features = false }
proxmox-api-macro = { path = "../proxmox-api-macro", optional = true }
proxmox-sys = { path = "../proxmox-sys" }
proxmox-tools = { path = "../proxmox-tools" }
proxmox-sortable-macro = { path = "../proxmox-sortable-macro", optional = true }
[features]
default = []
valgrind = ["proxmox-tools/valgrind"]
api-macro = ["proxmox-api-macro"]
cli = ["proxmox-api/cli"]
default = [ "router", "cli" ]
router = ["proxmox-api/router"]
sortable-macro = ["proxmox-sortable-macro"]
valgrind = ["proxmox-tools/valgrind"]