2021-05-14 15:44:38 +02:00
[ package ]
name = "proxmox-http"
edition = "2018"
2022-08-22 13:59:15 +02:00
version = "0.7.0"
2021-05-14 15:44:38 +02: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 15:44:39 +02:00
anyhow = "1.0"
2021-11-18 12:40:06 +01:00
base64 = { version = "0.13" , optional = true }
2021-05-14 15:44:39 +02:00
futures = { version = "0.3" , optional = true }
2021-05-14 15:44:43 +02:00
http = { version = "0.2" , optional = true }
2022-06-27 09:42:27 +02:00
hyper = { version = "0.14" , default_features = false , optional = true }
2021-05-14 15:44:39 +02:00
openssl = { version = "0.10" , optional = true }
2022-06-21 13:47:40 +02:00
serde_json = { version = "1.0" , optional = true }
2021-05-14 15:44:39 +02:00
tokio = { version = "1.0" , features = [ ] , optional = true }
2021-05-14 15:44:42 +02:00
tokio-openssl = { version = "0.6.1" , optional = true }
2022-08-04 10:01:13 +02:00
ureq = { version = "2.4" , features = [ "native-certs" ] , optional = true }
2022-06-21 13:47:40 +02:00
url = { version = "2" , optional = true }
2021-05-14 15:44:39 +02:00
2022-06-23 11:57:25 +02:00
proxmox-async = { path = "../proxmox-async" , optional = true , version = "0.4.1" }
2022-07-28 13:31:17 +02:00
proxmox-sys = { path = "../proxmox-sys" , optional = true , version = "0.4" }
2021-10-08 08:51:19 +02:00
proxmox-io = { path = "../proxmox-io" , optional = true , version = "1.0.0" }
2022-02-21 13:45:42 +01:00
proxmox-lang = { path = "../proxmox-lang" , optional = true , version = "1.1" }
2021-05-14 15:44:38 +02:00
[ features ]
default = [ ]
2022-08-22 11:24:04 +02:00
client = [ "dep:futures" , "http-helpers" , "dep:hyper" , "hyper?/full" , "dep:openssl" , "dep:tokio" , "tokio?/io-util" , "dep:tokio-openssl" ]
2022-08-04 10:01:13 +02:00
client-sync = [ "client-trait" , "http-helpers" , "dep:ureq" ]
2022-08-22 11:24:04 +02:00
client-trait = [ "dep:http" ]
http-helpers = [ "dep:base64" , "dep:http" , "dep:proxmox-sys" , "dep:serde_json" , "dep:url" ]
2021-10-08 08:51:19 +02:00
websocket = [
2022-08-22 11:24:04 +02:00
"dep:base64" ,
"dep:futures" ,
"dep:hyper" ,
"dep:openssl" ,
"dep:proxmox-sys" ,
"dep:proxmox-io" ,
"proxmox-io?/tokio" ,
"dep:proxmox-lang" ,
"dep:tokio" ,
"tokio?/io-util" ,
"tokio?/sync" ,
2021-10-08 08:51:19 +02:00
]