From a4d5a3540337f792417eaae1e06350a451147d7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 10 Feb 2023 13:03:07 +0200 Subject: [PATCH] Update to async-tungstenite 0.20 Part-of: --- net/aws/Cargo.toml | 2 +- net/webrtc/Cargo.toml | 2 +- net/webrtc/signalling/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml index 2988ad84..c2e43776 100644 --- a/net/aws/Cargo.toml +++ b/net/aws/Cargo.toml @@ -29,7 +29,7 @@ chrono = "0.4" url = "2" percent-encoding = "2" tokio = { version = "1.0", features = [ "full" ] } -async-tungstenite = { version = "0.19", features = ["tokio", "tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.20", features = ["tokio", "tokio-runtime", "tokio-native-tls"] } nom = "7" crc = "3" byteorder = "1.3.4" diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index 211e493e..9c3850e8 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -23,7 +23,7 @@ futures = "0.3" tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "time"] } tokio-native-tls = "0.3.0" tokio-stream = "0.1.11" -async-tungstenite = { version = "0.19", features = ["tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.20", features = ["tokio-runtime", "tokio-native-tls"] } serde = "1" serde_json = "1" fastrand = "1.0" diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index 443326e3..dbd20032 100644 --- a/net/webrtc/signalling/Cargo.toml +++ b/net/webrtc/signalling/Cargo.toml @@ -13,7 +13,7 @@ once_cell = "1.0" anyhow = "1" tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread", "time"] } tokio-native-tls = "0.3.0" -async-tungstenite = { version = "0.19", features = ["tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.20", features = ["tokio-runtime", "tokio-native-tls"] } serde = { version = "1", features = ["derive"] } serde_json = "1" clap = { version = "4", features = ["derive"] }