]> git.proxmox.com Git - proxmox-websocket-tunnel.git/blob - Cargo.toml
build: bump tokio-util to 0.7
[proxmox-websocket-tunnel.git] / Cargo.toml
1 [package]
2 name = "proxmox-websocket-tunnel"
3 version = "0.1.0"
4 authors = ["Fabian Grünbichler <f.gruenbichler@proxmox.com>"]
5 edition = "2018"
6 license = "AGPL-3"
7 description = "Proxmox websocket tunneling helper"
8
9 exclude = ["debian"]
10
11 [dependencies]
12 anyhow = "1.0"
13 base64 = "0.13"
14 futures = "0.3"
15 futures-util = "0.3"
16 hex = "0.4"
17 hyper = "0.14"
18 itertools = "0.10"
19 openssl = "0.10"
20 percent-encoding = "2"
21 serde = { version = "1.0", features = ["derive"] }
22 serde_json = "1.0"
23 tokio = { version = "1", features = ["io-std", "io-util", "macros", "rt-multi-thread", "sync"] }
24 tokio-stream = { version = "0.1", features = ["io-util"] }
25 tokio-util = "0.7"
26
27 proxmox-http = { version = "0.6", features = ["websocket", "client"] }
28 proxmox-sys = "0.2.2"