diff --git a/Cargo.lock b/Cargo.lock index 4fc43675b..597395fb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -219,9 +219,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.6.18" +version = "0.6.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" +checksum = "a6a1de45611fdb535bfde7b7de4fd54f4fd2b17b1737c0a59b69bf9b92074b8c" dependencies = [ "async-trait", "axum-core", @@ -247,7 +247,7 @@ dependencies = [ "sha1", "sync_wrapper", "tokio", - "tokio-tungstenite 0.18.0", + "tokio-tungstenite", "tower", "tower-layer", "tower-service", @@ -1690,7 +1690,7 @@ dependencies = [ "sysinfo", "test-utils", "tokio", - "tokio-tungstenite 0.19.0", + "tokio-tungstenite", "tracing", "tracing-appender", "tracing-subscriber", @@ -3677,7 +3677,7 @@ dependencies = [ "portpicker", "proptest", "tokio", - "tokio-tungstenite 0.19.0", + "tokio-tungstenite", "transport", ] @@ -3861,18 +3861,6 @@ dependencies = [ "tokio-stream", ] -[[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.19.0" @@ -3886,7 +3874,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tokio-rustls", - "tungstenite 0.19.0", + "tungstenite", ] [[package]] @@ -4087,25 +4075,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.19.0" diff --git a/devolutions-gateway/Cargo.toml b/devolutions-gateway/Cargo.toml index eeddb5300..bbfd31f6b 100644 --- a/devolutions-gateway/Cargo.toml +++ b/devolutions-gateway/Cargo.toml @@ -71,7 +71,7 @@ ngrok = "0.12.4" # HTTP hyper = "0.14.27" -axum = { version = "0.6.18", default-features = false, features = ["http1", "json", "ws", "query", "tracing", "tower-log", "headers"] } +axum = { version = "0.6.19", default-features = false, features = ["http1", "json", "ws", "query", "tracing", "tower-log", "headers"] } axum-extra = { version = "0.7.4", features = ["query", "async-read-body"] } tower-http = { version = "0.4.1", features = ["cors", "fs"] }