From 80f3cfb8bc5d5de1208a29136e121ae55a11cb76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:11:42 -0500 Subject: [PATCH] Bump lambda_http from 0.9.3 to 0.10.0 in /quickwit (#4632) Bumps [lambda_http](https://github.com/awslabs/aws-lambda-rust-runtime) from 0.9.3 to 0.10.0. - [Release notes](https://github.com/awslabs/aws-lambda-rust-runtime/releases) - [Commits](https://github.com/awslabs/aws-lambda-rust-runtime/commits/lambda-http-0.10.0) --- updated-dependencies: - dependency-name: lambda_http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- quickwit/Cargo.lock | 75 +++-------------------------- quickwit/quickwit-lambda/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 69 deletions(-) diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index d9c2945d3af..84894b83f21 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -745,22 +745,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "aws_lambda_events" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e84ed7ec0561e54444ad328c76b633f2946b77c234c99baf18c9e84250ceea1" -dependencies = [ - "base64 0.21.7", - "bytes", - "http 1.0.0", - "http-body 1.0.0", - "http-serde 2.0.0", - "query_map", - "serde", - "serde_json", -] - [[package]] name = "aws_lambda_events" version = "0.15.0" @@ -3408,11 +3392,11 @@ checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" [[package]] name = "lambda_http" -version = "0.9.3" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5107d9a9513f340fc9f80ec01ce88c81ab11de0a0826c9c3896504b602ae788b" +checksum = "ef8fafd7a4ce0bc6093cf1bed3dcdfc1239c27df1e79e3f2154f4d3299d4f60e" dependencies = [ - "aws_lambda_events 0.14.0", + "aws_lambda_events", "base64 0.21.7", "bytes", "encoding_rs", @@ -3422,7 +3406,7 @@ dependencies = [ "http-body 1.0.0", "http-body-util", "hyper 1.2.0", - "lambda_runtime 0.9.2", + "lambda_runtime", "mime", "percent-encoding", "pin-project-lite", @@ -3433,32 +3417,6 @@ dependencies = [ "url", ] -[[package]] -name = "lambda_runtime" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97113292dd7dc3a4f2ca23f6f5e32cbc02b8d54d9966f9e98111a5b3f153d582" -dependencies = [ - "async-stream", - "base64 0.21.7", - "bytes", - "futures", - "http 1.0.0", - "http-body 1.0.0", - "http-body-util", - "http-serde 2.0.0", - "hyper 1.2.0", - "hyper-util", - "lambda_runtime_api_client 0.9.0", - "serde", - "serde_json", - "serde_path_to_error", - "tokio", - "tokio-stream", - "tower", - "tracing", -] - [[package]] name = "lambda_runtime" version = "0.10.0" @@ -3475,7 +3433,7 @@ dependencies = [ "http-serde 2.0.0", "hyper 1.2.0", "hyper-util", - "lambda_runtime_api_client 0.10.0", + "lambda_runtime_api_client", "serde", "serde_json", "serde_path_to_error", @@ -3485,25 +3443,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "lambda_runtime_api_client" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "286b9131ad5312ecac04a655be8f2438988954d19e26f44986aefca6cca15333" -dependencies = [ - "bytes", - "futures-channel", - "futures-util", - "http 1.0.0", - "http-body 1.0.0", - "http-body-util", - "hyper 1.2.0", - "hyper-util", - "tokio", - "tower", - "tower-service", -] - [[package]] name = "lambda_runtime_api_client" version = "0.10.0" @@ -6103,11 +6042,11 @@ name = "quickwit-lambda" version = "0.7.1" dependencies = [ "anyhow", - "aws_lambda_events 0.15.0", + "aws_lambda_events", "chitchat", "flate2", "lambda_http", - "lambda_runtime 0.10.0", + "lambda_runtime", "once_cell", "opentelemetry", "opentelemetry-otlp", diff --git a/quickwit/quickwit-lambda/Cargo.toml b/quickwit/quickwit-lambda/Cargo.toml index 64e27e1a7b6..66131048ba4 100644 --- a/quickwit/quickwit-lambda/Cargo.toml +++ b/quickwit/quickwit-lambda/Cargo.toml @@ -23,7 +23,7 @@ anyhow = { workspace = true } aws_lambda_events = "0.15.0" chitchat = { workspace = true } flate2 = { workspace = true } -lambda_http = "0.9.1" +lambda_http = "0.10.0" lambda_runtime = "0.10.0" once_cell = { workspace = true } opentelemetry = { workspace = true }