diff --git a/Cargo.lock b/Cargo.lock index 2f707e2..7cf815a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -873,12 +873,12 @@ dependencies = [ [[package]] name = "hyper-tungstenite" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "226df6fd0aece319a325419d770aa9d947defa60463f142cd82b329121f906a3" +checksum = "7cc7dcb1ab67cd336f468a12491765672e61a3b6b148634dbfe2fe8acd3fe7d9" dependencies = [ "hyper", - "pin-project", + "pin-project-lite", "tokio", "tokio-tungstenite", "tungstenite", @@ -1092,9 +1092,9 @@ dependencies = [ [[package]] name = "lz4_flex" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b8c72594ac26bfd34f2d99dfced2edfaddfe8a476e3ff2ca0eb293d925c4f83" +checksum = "3ea9b256699eda7b0387ffbc776dd625e28bde3918446381781245b7a50349d8" dependencies = [ "twox-hash", ] @@ -2187,9 +2187,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" +checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2" dependencies = [ "futures-util", "log", @@ -2283,9 +2283,9 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tungstenite" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" +checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" dependencies = [ "byteorder 1.4.3", "bytes", @@ -2299,7 +2299,6 @@ dependencies = [ "thiserror", "url", "utf-8", - "webpki", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 2bb9309..163c716 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,10 +70,10 @@ thiserror = "1.0" async-trait = "0.1" dialoguer = "0.10" dunce = "1.0" -lz4_flex = "0.10" +lz4_flex = "0.11" pin-project = "1.0" os_str_bytes = "6.4" -urlencoding = "2.1.2" +urlencoding = "2.1" ### RUNTIME @@ -97,11 +97,11 @@ toml = { version = "0.7", features = ["preserve_order"] } ### NET hyper = { version = "0.14", features = ["full"] } -hyper-tungstenite = { version = "0.10" } +hyper-tungstenite = { version = "0.11" } reqwest = { version = "0.11", default-features = false, features = [ "rustls-tls", ] } -tokio-tungstenite = { version = "0.19", features = ["rustls-tls-webpki-roots"] } +tokio-tungstenite = { version = "0.20", features = ["rustls-tls-webpki-roots"] } ### CLI