2021-05-14 16:44:38 +03:00
[ package ]
name = "proxmox-http"
edition = "2018"
2022-07-28 14:32:20 +03:00
version = "0.6.5"
2021-05-14 16:44:38 +03:00
authors = [
"Dietmar Maurer <dietmar@proxmox.com>" ,
"Wolfgang Bumiller <w.bumiller@proxmox.com>" ,
]
license = "AGPL-3"
description = "Proxmox HTTP library"
exclude = [ "debian" ]
[ dependencies ]
2021-05-14 16:44:39 +03:00
anyhow = "1.0"
2021-11-18 14:40:06 +03:00
base64 = { version = "0.13" , optional = true }
2021-05-14 16:44:39 +03:00
futures = { version = "0.3" , optional = true }
2021-05-14 16:44:43 +03:00
http = { version = "0.2" , optional = true }
2022-06-27 10:42:27 +03:00
hyper = { version = "0.14" , default_features = false , optional = true }
2021-05-14 16:44:39 +03:00
openssl = { version = "0.10" , optional = true }
2022-06-21 14:47:40 +03:00
serde_json = { version = "1.0" , optional = true }
2021-05-14 16:44:39 +03:00
tokio = { version = "1.0" , features = [ ] , optional = true }
2021-05-14 16:44:42 +03:00
tokio-openssl = { version = "0.6.1" , optional = true }
2022-06-21 14:47:40 +03:00
url = { version = "2" , optional = true }
2021-05-14 16:44:39 +03:00
2022-06-23 12:57:25 +03:00
proxmox-async = { path = "../proxmox-async" , optional = true , version = "0.4.1" }
2022-07-28 14:31:17 +03:00
proxmox-sys = { path = "../proxmox-sys" , optional = true , version = "0.4" }
2021-10-08 09:51:19 +03:00
proxmox-io = { path = "../proxmox-io" , optional = true , version = "1.0.0" }
2022-02-21 15:45:42 +03:00
proxmox-lang = { path = "../proxmox-lang" , optional = true , version = "1.1" }
2021-05-14 16:44:38 +03:00
[ features ]
default = [ ]
2022-06-27 10:42:27 +03:00
client = [ "futures" , "http-helpers" , "hyper/full" , "openssl" , "tokio/io-util" , "tokio-openssl" ]
2022-06-23 12:56:43 +03:00
client-trait = [ "http" ]
2022-06-27 10:42:27 +03:00
http-helpers = [ "base64" , "http" , "proxmox-sys" , "serde_json" , "url" ]
2021-10-08 09:51:19 +03:00
websocket = [
"base64" ,
"futures" ,
"hyper" ,
"openssl" ,
2021-11-23 13:55:22 +03:00
"proxmox-sys" ,
2021-10-08 09:51:19 +03:00
"proxmox-io/tokio" ,
2022-02-21 13:39:15 +03:00
"proxmox-lang" ,
2021-10-08 09:51:19 +03:00
"tokio/io-util" ,
"tokio/sync" ,
]