From 1a85dc7008d77cb4d51c488b4ba02a02cd08b05d Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 28 Jul 2025 14:49:29 +0000 Subject: [PATCH] fix: pin tokio to 1.46.1 and aws-sdks-ts --- backend/Cargo.lock | 16 ++++++++-------- backend/Cargo.toml | 9 ++++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 9dc7c12891..586659cca4 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -746,9 +746,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "aws-config" -version = "1.8.3" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0baa720ebadea158c5bda642ac444a2af0cdf7bb66b46d1e4533de5d1f449d0" +checksum = "ebd9b83179adf8998576317ce47785948bcff399ec5b15f4dfbdedd44ddf5b92" dependencies = [ "aws-credential-types", "aws-runtime", @@ -901,9 +901,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.80.0" +version = "1.78.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e3ed2a9b828ae7763ddaed41d51724d2661a50c45f845b08967e52f4939cfc" +checksum = "37f7766d2344f56d10d12f3c32993da36d78217f32594fe4fb8e57a538c1cdea" dependencies = [ "aws-credential-types", "aws-runtime", @@ -13203,9 +13203,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.47.0" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", @@ -13216,10 +13216,10 @@ dependencies = [ "pin-project-lite", "signal-hook-registry", "slab", - "socket2 0.6.0", + "socket2 0.5.10", "tokio-macros", "tracing", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 890a577f87..249772a449 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -195,7 +195,7 @@ memchr = "2.7.4" axum = { version = "^0.7", features = ["multipart"] } headers = "^0" hyper = { version = "^1", features = ["full"] } -tokio = { version = "^1.42.0", features = ["full", "tracing", "time"] } +tokio = { version = "=1.46.1", features = ["full", "tracing", "time"] } tokio-stream = { version = "0.1.17" } tower = "^0" tower-http = { version = "^0.6", features = ["trace", "cors"] } @@ -354,8 +354,11 @@ datafusion = "47.0.0" object_store = { git = "https://github.com/apache/arrow-rs-object-store", rev = "36752c975d4f29e20b57c91f81a10872dcd48ae7", features = ["aws", "azure", "gcp"] } openidconnect = { version = "4.0.0-rc.1" } aws-config = "^1" -aws-sdk-sqs = "1.57.0" -aws-sdk-sts = "^1" +aws-sdk-sqs = "=1.78.0" +aws-sdk-sts = "=1.78.0" + + + aws-smithy-types-convert = { version = "^0", features = ["convert-chrono"] } crc = "^3" tar = "^0"