Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-12-09 13:17:11 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-12-09 13:17:11 +0300
commit181bd13103689ea3eb10a9ac9b595fa61b8dac3c (patch)
treeb06551745cc34e401c2a326231cdfdf334fc1176 /net
parent308a0c45328e5f400ef9cf46d08f83bee6f2b1d4 (diff)
Update to async-tungstenite 0.24
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1404>
Diffstat (limited to 'net')
-rw-r--r--net/webrtc/Cargo.toml2
-rw-r--r--net/webrtc/signalling/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml
index fb40ddb71..420c1adcb 100644
--- a/net/webrtc/Cargo.toml
+++ b/net/webrtc/Cargo.toml
@@ -25,7 +25,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.23", features = ["tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.24", features = ["tokio-runtime", "tokio-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
fastrand = "2.0"
diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml
index 77d7d1ec5..131371c41 100644
--- a/net/webrtc/signalling/Cargo.toml
+++ b/net/webrtc/signalling/Cargo.toml
@@ -12,7 +12,7 @@ rust-version = "1.70"
anyhow = "1"
tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread", "time"] }
tokio-native-tls = "0.3.0"
-async-tungstenite = { version = "0.23", features = ["tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.24", features = ["tokio-runtime", "tokio-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }