diff --git a/Cargo.lock b/Cargo.lock index 0c41c5558..934ac998b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2576,6 +2576,7 @@ dependencies = [ "aws-sdk-transcribestreaming", "aws-sdk-translate", "aws-smithy-runtime", + "aws-smithy-runtime-api", "aws-types", "base32", "bytes", @@ -3410,6 +3411,7 @@ dependencies = [ "aws-sigv4", "aws-smithy-http 0.60.12", "aws-smithy-runtime", + "aws-smithy-runtime-api", "aws-smithy-types", "aws-types", "chrono", @@ -4896,7 +4898,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml index 0eb5bafd6..d25af738a 100644 --- a/net/aws/Cargo.toml +++ b/net/aws/Cargo.toml @@ -16,6 +16,7 @@ base32 = "0.5" aws-config = "~1.5.18" # needs this constraint to prevent adding aws-smithy-http 0.62 too aws-smithy-runtime = "~1.7.8" +aws-smithy-runtime-api = "~1.7.4" aws-sdk-s3 = "~1.76.0" aws-sdk-transcribestreaming = "~1.63.0" aws-sdk-translate = "~1.61.0" diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index 52d628611..466eaac21 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -42,6 +42,7 @@ url = "2" aws-config = { version = "~1.5.18", optional = true } # needs this constraint to prevent adding aws-smithy-http 0.62 too aws-smithy-runtime = { version = "~1.7.8", optional = true } +aws-smithy-runtime-api = { version = "~1.7.4", optional = true } aws-types = { version = "1.0", optional = true } aws-credential-types = { version = "1.0", optional = true } aws-sigv4 = { version = "~1.2.9", optional = true } @@ -87,8 +88,8 @@ capi = [] v1_22 = ["gst/v1_22", "gst-app/v1_22", "gst-video/v1_22", "gst-webrtc/v1_22", "gst-sdp/v1_22", "gst-rtp/v1_22"] doc = [] -aws = ["dep:aws-config", "dep:aws-smithy-runtime", "dep:aws-types", "dep:aws-credential-types", "dep:aws-sigv4", - "dep:aws-smithy-http", "dep:aws-smithy-types", "dep:aws-sdk-kinesisvideo", +aws = ["dep:aws-config", "dep:aws-smithy-runtime", "dep:aws-smithy-runtime-api", "dep:aws-types", "dep:aws-credential-types", + "dep:aws-sigv4", "dep:aws-smithy-http", "dep:aws-smithy-types", "dep:aws-sdk-kinesisvideo", "dep:aws-sdk-kinesisvideosignaling", "dep:data-encoding", "dep:http", "dep:url-escape"] janus = ["dep:http"] livekit = ["dep:livekit-protocol", "dep:livekit-api"]