From 16108b9b752f866be18ae71e9d6785f3905265f2 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Tue, 2 Dec 2025 16:00:54 +0100 Subject: [PATCH] reduce features in aws-config --- Cargo.lock | 49 ------------------------------------------------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 50 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1774ad119..e134bc516 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,8 +455,6 @@ checksum = "a0149602eeaf915158e14029ba0c78dedb8c08d554b024d54c8f239aab46511d" dependencies = [ "aws-credential-types", "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", "aws-sdk-sts", "aws-smithy-async", "aws-smithy-http", @@ -467,14 +465,11 @@ dependencies = [ "aws-types", "bytes", "fastrand", - "hex", "http 1.4.0", - "ring", "time", "tokio", "tracing", "url", - "zeroize", ] [[package]] @@ -570,50 +565,6 @@ dependencies = [ "url", ] -[[package]] -name = "aws-sdk-sso" -version = "1.90.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f18e53542c522459e757f81e274783a78f8c81acdfc8d1522ee8a18b5fb1c66" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", -] - -[[package]] -name = "aws-sdk-ssooidc" -version = "1.92.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "532f4d866012ffa724a4385c82e8dd0e59f0ca0e600f3f22d4c03b6824b34e4a" -dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", -] - [[package]] name = "aws-sdk-sts" version = "1.94.0" diff --git a/Cargo.toml b/Cargo.toml index 4c737db90..f9d6c6600 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ tokio-util = { version = "0.7.15", default-features = false, features = ["io"] } tracing-futures= { version = "0.2.5", features = ["std-future", "futures-03"] } futures-util = "0.3.5" async-stream = "0.3.5" -aws-config = "1.0.0" +aws-config = { version = "1.0.0", default-features = false, features = ["rt-tokio", "default-https-client"] } aws-sdk-s3 = "1.3.0" aws-smithy-types-convert = { version = "0.60.0", features = ["convert-chrono"] } http = "1.0.0"