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

github.com/sdroege/gst-plugin-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>2022-10-24 18:03:33 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-24 18:03:33 +0300
commitb64f95116001647e1f6795b188cd64096290e224 (patch)
tree28cc41a66c42a956c10ddf8dedbbfe990dbfaeee /net
parent6d21231554c466e34be76cbf826a19e1675d1898 (diff)
Update to async-tungstenite 0.18
Diffstat (limited to 'net')
-rw-r--r--net/aws/Cargo.toml2
-rw-r--r--net/webrtc/Cargo.toml2
-rw-r--r--net/webrtc/signalling/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml
index 08430cfe..4b8f3ff4 100644
--- a/net/aws/Cargo.toml
+++ b/net/aws/Cargo.toml
@@ -28,7 +28,7 @@ chrono = "0.4"
url = "2"
percent-encoding = "2"
tokio = { version = "1.0", features = [ "full" ] }
-async-tungstenite = { version = "0.17", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.18", 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 a8d037ab..29479b54 100644
--- a/net/webrtc/Cargo.toml
+++ b/net/webrtc/Cargo.toml
@@ -22,7 +22,7 @@ thiserror = "1"
futures = "0.3"
async-std = { version = "1", features = ["unstable"] }
async-native-tls = { version = "0.4.0" }
-async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-native-tls"] }
+async-tungstenite = { version = "0.18", features = ["async-std-runtime", "async-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 70ff6051..315b9c77 100644
--- a/net/webrtc/signalling/Cargo.toml
+++ b/net/webrtc/signalling/Cargo.toml
@@ -12,7 +12,7 @@ rust-version = "1.63"
anyhow = "1"
async-std = { version = "1", features = ["unstable", "attributes"] }
async-native-tls = "0.4"
-async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-native-tls"] }
+async-tungstenite = { version = "0.18", features = ["async-std-runtime", "async-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }