Skip to content

Commit 9c8aeec

Browse files
gautamg795Convex, Inc.
authored andcommitted
aws dependencies
GitOrigin-RevId: 25d6b9445d31de302b4b0dd699158c0d7f45ee65
1 parent 4c19271 commit 9c8aeec

File tree

7 files changed

+227
-102
lines changed

7 files changed

+227
-102
lines changed

Cargo.lock

Lines changed: 54 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ async_zip_0_0_9 = { package = "async_zip", version = "0.0.9", default-features =
1717
cbc = { version = "0.1.2" }
1818
csv-async = "1.2"
1919
atomic_refcell = "0.1.13"
20-
aws-config = "1.1"
21-
aws-sdk-s3 = "1.14.0"
22-
aws-smithy-http = "0.60.8"
20+
aws-config = "1"
21+
aws-sdk-s3 = "1"
22+
aws-smithy-http = "0.62"
23+
aws-smithy-types-convert = { version = "0.60", features = [ "convert-streams" ] }
2324
aws-types = "1.1"
2425
axum = { version = "0.8", features = [ "ws", "original-uri", "macros", "multipart" ] }
2526
axum-extra = { version = "0.10", features = [ "typed-header", "cookie" ] }

crates/aws_utils/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ license = "LicenseRef-FSL-1.1-Apache-2.0"
88
anyhow = { workspace = true }
99
aws-config = { workspace = true }
1010
aws-sdk-s3 = { workspace = true }
11-
aws-types = { workspace = true }
12-
futures-async-stream = { workspace = true }
11+
aws-smithy-types-convert = { workspace = true }
12+
aws-types = { workspace = true }
13+
futures = { workspace = true }
1314
tracing = { workspace = true }
1415

1516
[lints]
16-
workspace = true
17+
workspace = true

crates/aws_utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub fn must_config_from_env() -> anyhow::Result<ConfigLoader> {
4040
anyhow::bail!("AWS_SECRET_ACCESS_KEY env variable must be set");
4141
};
4242
let credentials = EnvironmentVariableCredentialsProvider::new();
43-
Ok(aws_config::defaults(BehaviorVersion::v2024_03_28())
43+
Ok(aws_config::defaults(BehaviorVersion::v2025_01_17())
4444
.region(region)
4545
.credentials_provider(credentials))
4646
}

0 commit comments

Comments
 (0)