From c15f0ae27d3e4f017ad66ca9d9598799fbf8eae2 Mon Sep 17 00:00:00 2001 From: Remi Dettai Date: Tue, 2 Apr 2024 15:19:22 +0000 Subject: [PATCH] Upgrade lambda_runtime --- quickwit/Cargo.lock | 14 ++++++++------ quickwit/quickwit-lambda/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index 9c21cf6657b..5458641e695 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -3401,9 +3401,9 @@ dependencies = [ [[package]] name = "lambda_runtime" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2904c10fbeaf07aa317fc96a0e28e89c80ed12f7949ed06afd7869b21fef32" +checksum = "276c835f2217fac810a97f2ed8eabfe9be71afe4f3ffd8671b05cb528e95ff8a" dependencies = [ "async-stream", "base64 0.21.7", @@ -3415,13 +3415,15 @@ dependencies = [ "http-serde 2.0.0", "hyper 1.2.0", "hyper-util", - "lambda_runtime_api_client 0.10.0", + "lambda_runtime_api_client 0.11.0", + "pin-project", "serde", "serde_json", "serde_path_to_error", "tokio", "tokio-stream", "tower", + "tower-layer", "tracing", ] @@ -3439,9 +3441,9 @@ dependencies = [ [[package]] name = "lambda_runtime_api_client" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1364cd67281721d2a9a4444ba555cf4d74a195e647061fa4ccac46e6f5c3b0ae" +checksum = "722b02764422524d3f49a934b570f7c567f811eda1f9c4bdebebcfae1bad4f23" dependencies = [ "bytes", "futures-channel", @@ -5961,7 +5963,7 @@ dependencies = [ "flate2", "http 0.2.12", "lambda_http", - "lambda_runtime 0.10.0", + "lambda_runtime 0.11.1", "mime_guess", "once_cell", "opentelemetry", diff --git a/quickwit/quickwit-lambda/Cargo.toml b/quickwit/quickwit-lambda/Cargo.toml index 20464a5e47f..abb15cbcca0 100644 --- a/quickwit/quickwit-lambda/Cargo.toml +++ b/quickwit/quickwit-lambda/Cargo.toml @@ -26,7 +26,7 @@ chrono = { workspace = true } flate2 = { workspace = true } http = { workspace = true } lambda_http = "0.8.0" -lambda_runtime = "0.10.0" +lambda_runtime = "0.11.1" mime_guess = { workspace = true } once_cell = { workspace = true } opentelemetry = { workspace = true }