]> git.proxmox.com Git - proxmox.git/blame - proxmox-http/Cargo.toml
proxmox-http: bump version to 0.2.1
[proxmox.git] / proxmox-http / Cargo.toml
CommitLineData
7b7e1413
FG
1[package]
2name = "proxmox-http"
3edition = "2018"
fff7b926 4version = "0.2.1"
7b7e1413
FG
5authors = [
6 "Dietmar Maurer <dietmar@proxmox.com>",
7 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
8]
9license = "AGPL-3"
10description = "Proxmox HTTP library"
11
12exclude = [ "debian" ]
13
14[dependencies]
5153e68c
FG
15anyhow = "1.0"
16base64 = { version = "0.12", optional = true }
17futures = { version = "0.3", optional = true }
f305be95 18http = { version = "0.2", optional = true }
5153e68c
FG
19hyper = { version = "0.14", features = [ "full" ], optional = true }
20openssl = { version = "0.10", optional = true }
21tokio = { version = "1.0", features = [], optional = true }
6c502851 22tokio-openssl = { version = "0.6.1", optional = true }
5153e68c
FG
23
24proxmox = { path = "../proxmox", optional = true, version = "0.11.3", default-features = false }
7b7e1413
FG
25
26[features]
27default = []
28
80b423f3 29client = [ "futures", "http-helpers", "openssl" ]
7f56e077 30http-helpers = [ "base64", "http", "hyper", "tokio/io-util", "tokio-openssl", "proxmox" ]
5153e68c 31websocket = [ "base64", "futures", "hyper", "openssl", "proxmox/tokio", "tokio/io-util", "tokio/sync" ]