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
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-18 11:06:17 +0300
commitc655edd8927d6fa1d3484f6ee053f92ea33a3e57 (patch)
tree4df71688b898942116d14feb28891719e2925f2c
parentc0499c7dd12344cd92cb6e692e95c13316a12459 (diff)
Update to async-tungstenite 0.24
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1410>
-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 63fa0f251..122116afe 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 1f44ee400..fe31a4d1e 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"] }