From: Wolfgang Bumiller Date: Fri, 4 Feb 2022 10:30:19 +0000 (+0100) Subject: Cargo.toml: drop paths, cleanup X-Git-Url: https://git.proxmox.com/?p=proxmox-websocket-tunnel.git;a=commitdiff_plain;h=f8faa2c3f0d0c4d401c3bfa1eca61fffa7dbf709 Cargo.toml: drop paths, cleanup Signed-off-by: Wolfgang Bumiller --- diff --git a/Cargo.toml b/Cargo.toml index 7f24602..685e9b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,13 +14,14 @@ base64 = "0.13" futures = "0.3" futures-util = "0.3" hex = "0.4" -hyper = { version = "0.14" } +hyper = "0.14" openssl = "0.10" percent-encoding = "2" -proxmox-http = { version = "0.6", path = "../proxmox/proxmox-http", features = ["websocket", "client"] } -proxmox-sys = { version = "0.2.2", path = "../proxmox/proxmox-sys" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1", features = ["io-std", "io-util", "macros", "rt-multi-thread", "sync"] } tokio-stream = { version = "0.1", features = ["io-util"] } tokio-util = "0.6" + +proxmox-http = { version = "0.6", features = ["websocket", "client"] } +proxmox-sys = "0.2.2"