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>2023-04-21 12:57:00 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-04-22 12:18:44 +0300
commita29769789fa928f510156b6e2f8cbfb5f68aeaed (patch)
treec03d937f62276598b19d2fa4f48ea9155f3f5916 /net
parent1db07fe451240e40d4c461cf3d91813a29e15f3e (diff)
Update async-tungstenite and AWS SDK dependencies
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1189>
Diffstat (limited to 'net')
-rw-r--r--net/aws/Cargo.toml6
-rw-r--r--net/webrtc/Cargo.toml2
-rw-r--r--net/webrtc/signalling/Cargo.toml2
3 files changed, 5 insertions, 5 deletions
diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml
index 14200347..58cca389 100644
--- a/net/aws/Cargo.toml
+++ b/net/aws/Cargo.toml
@@ -17,8 +17,8 @@ gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/g
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "0.20", version = "0.20" }
gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "0.20", version = "0.20", features = ["v1_16"] }
aws-config = "0.55.0"
-aws-sdk-s3 = "0.25.0"
-aws-sdk-transcribe = "0.25.0"
+aws-sdk-s3 = "0.26.0"
+aws-sdk-transcribe = "0.26.0"
aws-types = "0.55.0"
aws-credential-types = "0.55.0"
aws-sig-auth = "0.55.0"
@@ -29,7 +29,7 @@ chrono = "0.4"
url = "2"
percent-encoding = "2"
tokio = { version = "1.0", features = [ "full" ] }
-async-tungstenite = { version = "0.20", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.21", 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 ef2cbb1f..4d72eb48 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.20", features = ["tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.21", 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 fd92c9d6..1eb2cd5d 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.20", features = ["tokio-runtime", "tokio-native-tls"] }
+async-tungstenite = { version = "0.21", features = ["tokio-runtime", "tokio-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }