From 657aba3c05435e16319ce379034739605b035eba Mon Sep 17 00:00:00 2001 From: Will Jones Date: Wed, 22 May 2024 08:26:09 -0700 Subject: [PATCH] ci: pin aws sdk versions (#1318) --- rust/lancedb/Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rust/lancedb/Cargo.toml b/rust/lancedb/Cargo.toml index ed963445..e3b87b8a 100644 --- a/rust/lancedb/Cargo.toml +++ b/rust/lancedb/Cargo.toml @@ -49,9 +49,12 @@ rand = { version = "0.8.3", features = ["small_rng"] } uuid = { version = "1.7.0", features = ["v4"] } walkdir = "2" # For s3 integration tests (dev deps aren't allowed to be optional atm) -aws-sdk-s3 = { version = "1.0" } -aws-sdk-kms = { version = "1.0" } +# We pin these because the content-length check breaks with localstack +# https://github.com/smithy-lang/smithy-rs/releases/tag/release-2024-05-21 +aws-sdk-s3 = { version = "=1.23.0" } +aws-sdk-kms = { version = "=1.21.0" } aws-config = { version = "1.0" } +aws-smithy-runtime = { version = "=1.3.0" } [features] default = []