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