From 3243b61f6432c8d2cb1d8dc5478442f593dc6203 Mon Sep 17 00:00:00 2001 From: Orson Peters Date: Mon, 3 Jun 2024 14:20:15 +0200 Subject: [PATCH] fix: avoid AWS pinning to outdated crc32c version (#16681) --- Cargo.lock | 13 +++++++------ docs/src/rust/Cargo.toml | 3 ++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 45efcb4a47f1..1b7eeacd2d76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -359,9 +359,9 @@ dependencies = [ [[package]] name = "aws-sdk-s3" -version = "1.32.0" +version = "1.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2924dd7efd0112a5a88ec7d1c2dbf371966f018e90f3f45db7c8027ef895662a" +checksum = "67520cfee50a8a075a86e7960a6ff30a0a93f6b83ef36f7dff42a9fad9ec1818" dependencies = [ "ahash", "aws-credential-types", @@ -501,9 +501,9 @@ dependencies = [ [[package]] name = "aws-smithy-checksums" -version = "0.60.9" +version = "0.60.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6242d6a54d3b4b83458f4abd7057ba93c4419dc71e8217e9acd3a748d656d99e" +checksum = "509e33efbd853e1e670c47e49af2f4df3d2ae0de8b845b068ddbf04636a6700d" dependencies = [ "aws-smithy-http", "aws-smithy-types", @@ -1067,9 +1067,9 @@ checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" [[package]] name = "crc32c" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2" +checksum = "0227b9f93e535d49bc7ce914c066243424ce85ed90864cebd0874b184e9b6947" dependencies = [ "rustc_version", ] @@ -2919,6 +2919,7 @@ version = "0.40.0" dependencies = [ "aws-config", "aws-sdk-s3", + "aws-smithy-checksums", "chrono", "polars", "rand", diff --git a/docs/src/rust/Cargo.toml b/docs/src/rust/Cargo.toml index 96e31ebd04b6..fa41c7eed87a 100644 --- a/docs/src/rust/Cargo.toml +++ b/docs/src/rust/Cargo.toml @@ -10,7 +10,8 @@ description = "Code examples included in the Polars documentation website" [dependencies] aws-config = { version = "1" } -aws-sdk-s3 = { version = "1" } +aws-sdk-s3 = { version = "=1.31" } # Exact version because of https://github.com/smithy-lang/smithy-rs/issues/3672 +aws-smithy-checksums = { version = "=0.60.8" } # Exact version because of https://github.com/smithy-lang/smithy-rs/issues/3672 chrono = { workspace = true } rand = { workspace = true } reqwest = { workspace = true, features = ["blocking"] }