]> git.proxmox.com Git - proxmox-websocket-tunnel.git/blame - Cargo.toml
Cargo.toml: drop paths, cleanup
[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"
c18e63b9
FG
18openssl = "0.10"
19percent-encoding = "2"
c18e63b9
FG
20serde = { version = "1.0", features = ["derive"] }
21serde_json = "1.0"
22tokio = { version = "1", features = ["io-std", "io-util", "macros", "rt-multi-thread", "sync"] }
23tokio-stream = { version = "0.1", features = ["io-util"] }
24tokio-util = "0.6"
f8faa2c3
WB
25
26proxmox-http = { version = "0.6", features = ["websocket", "client"] }
27proxmox-sys = "0.2.2"