]> git.proxmox.com Git - proxmox.git/blob - proxmox-http/Cargo.toml
bump proxmox-http to 0.6.4-1
[proxmox.git] / proxmox-http / Cargo.toml
1 [package]
2 name = "proxmox-http"
3 edition = "2018"
4 version = "0.6.4"
5 authors = [
6 "Dietmar Maurer <dietmar@proxmox.com>",
7 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
8 ]
9 license = "AGPL-3"
10 description = "Proxmox HTTP library"
11
12 exclude = [ "debian" ]
13
14 [dependencies]
15 anyhow = "1.0"
16 base64 = { version = "0.13", optional = true }
17 futures = { version = "0.3", optional = true }
18 http = { version = "0.2", optional = true }
19 hyper = { version = "0.14", default_features = false, optional = true }
20 openssl = { version = "0.10", optional = true }
21 serde_json = { version = "1.0", optional = true }
22 tokio = { version = "1.0", features = [], optional = true }
23 tokio-openssl = { version = "0.6.1", optional = true }
24 url = { version = "2", optional = true }
25
26 proxmox-async = { path = "../proxmox-async", optional = true, version = "0.4.1" }
27 proxmox-sys = { path = "../proxmox-sys", optional = true, version = "0.3.0" }
28 proxmox-io = { path = "../proxmox-io", optional = true, version = "1.0.0" }
29 proxmox-lang = { path = "../proxmox-lang", optional = true, version = "1.1" }
30
31 [features]
32 default = []
33
34 client = [ "futures", "http-helpers", "hyper/full", "openssl", "tokio/io-util", "tokio-openssl" ]
35 client-trait = [ "http" ]
36 http-helpers = [ "base64", "http", "proxmox-sys", "serde_json", "url" ]
37 websocket = [
38 "base64",
39 "futures",
40 "hyper",
41 "openssl",
42 "proxmox-sys",
43 "proxmox-io/tokio",
44 "proxmox-lang",
45 "tokio/io-util",
46 "tokio/sync",
47 ]