diff --git a/Cargo.lock b/Cargo.lock index d9200e3..0c865d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1647,15 +1647,15 @@ dependencies = [ [[package]] name = "hyper-tungstenite" -version = "0.9.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "880b8b1c98a5ec2a505c7c90db6d3f6f1f480af5655d9c5b55facc9382a5a5b5" +checksum = "7cc7dcb1ab67cd336f468a12491765672e61a3b6b148634dbfe2fe8acd3fe7d9" dependencies = [ "hyper", - "pin-project", + "pin-project-lite", "tokio", - "tokio-tungstenite 0.18.0", - "tungstenite 0.18.0", + "tokio-tungstenite", + "tungstenite", ] [[package]] @@ -2730,7 +2730,7 @@ dependencies = [ "thiserror", "tokio", "tokio-rustls 0.23.4", - "tokio-tungstenite 0.20.1", + "tokio-tungstenite", ] [[package]] @@ -4092,18 +4092,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "tokio-tungstenite" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" -dependencies = [ - "futures-util", - "log", - "tokio", - "tungstenite 0.18.0", -] - [[package]] name = "tokio-tungstenite" version = "0.20.1" @@ -4115,7 +4103,7 @@ dependencies = [ "rustls 0.21.8", "tokio", "tokio-rustls 0.24.1", - "tungstenite 0.20.1", + "tungstenite", "webpki-roots 0.25.2", ] @@ -4289,25 +4277,6 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" -[[package]] -name = "tungstenite" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" -dependencies = [ - "base64 0.13.1", - "byteorder", - "bytes", - "http", - "httparse", - "log", - "rand 0.8.5", - "sha1", - "thiserror", - "url", - "utf-8", -] - [[package]] name = "tungstenite" version = "0.20.1" diff --git a/proxyapi/Cargo.toml b/proxyapi/Cargo.toml index a19f924..abc0ae1 100644 --- a/proxyapi/Cargo.toml +++ b/proxyapi/Cargo.toml @@ -16,7 +16,7 @@ chrono = "0.4.23" http = "0.2.8" hyper = {version="0.14.23", features=["full"]} hyper-rustls = {version = "0.23.2", features = ["http1", "logging", "tls12", "webpki-tokio"]} -hyper-tungstenite = "0.9.0" +hyper-tungstenite = "0.11" moka = {version="0.9.6", features= ["future"]} openssl = {version = "0.10.45", features = ["vendored"]} thiserror = "1.0.38"