From cb5b527d741c3f99bdb92a3a23773ed2495a93b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 2 May 2023 15:30:00 +0300 Subject: [PATCH] Update to AWS SDK 0.27 and async-tungstenite 0.22 Part-of: --- net/aws/Cargo.toml | 6 +++--- net/webrtc/Cargo.toml | 6 +++--- net/webrtc/signalling/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml index 18c64ae8..01544d47 100644 --- a/net/aws/Cargo.toml +++ b/net/aws/Cargo.toml @@ -14,9 +14,9 @@ rust-version = "1.66" async-stream = "0.3.4" base32 = "0.4" aws-config = "0.55.0" -aws-sdk-s3 = "0.26.0" -aws-sdk-transcribestreaming = "0.26.0" -aws-sdk-translate = "0.26.0" +aws-sdk-s3 = "0.27.0" +aws-sdk-transcribestreaming = "0.27.0" +aws-sdk-translate = "0.27.0" aws-types = "0.55.0" aws-credential-types = "0.55.0" aws-sig-auth = "0.55.0" diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index 0906e078..bd62b9ee 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.21", features = ["tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.22", features = ["tokio-runtime", "tokio-native-tls"] } serde = "1" serde_json = "1" fastrand = "1.0" @@ -39,8 +39,8 @@ aws-credential-types = "0.55.0" aws-sig-auth = "0.55.0" aws-smithy-http = { version = "0.55.0", features = [ "rt-tokio" ] } aws-smithy-types = "0.55.0" -aws-sdk-kinesisvideo = "0.26.0" -aws-sdk-kinesisvideosignaling = "0.26.0" +aws-sdk-kinesisvideo = "0.27.0" +aws-sdk-kinesisvideosignaling = "0.27.0" http = "0.2.7" chrono = "0.4" data-encoding = "2.3.3" diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index 814cbc04..a77259d8 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.21", features = ["tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.22", features = ["tokio-runtime", "tokio-native-tls"] } serde = { version = "1", features = ["derive"] } serde_json = "1" clap = { version = "4", features = ["derive"] }