From 369907b02d3bb7d88746d90eae6030a171d3e75e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 02:09:48 +0000 Subject: [PATCH] Rust - Bump lambda_http from 0.17.0 to 1.0.1 in /rust-lambda Bumps [lambda_http](https://github.com/aws/aws-lambda-rust-runtime) from 0.17.0 to 1.0.1. - [Release notes](https://github.com/aws/aws-lambda-rust-runtime/releases) - [Commits](https://github.com/aws/aws-lambda-rust-runtime/commits/v1.0.1) --- updated-dependencies: - dependency-name: lambda_http dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- rust-lambda/Cargo.lock | 58 +++++++++++++++++++++++++++++++++++++----- rust-lambda/Cargo.toml | 2 +- 2 files changed, 52 insertions(+), 8 deletions(-) diff --git a/rust-lambda/Cargo.lock b/rust-lambda/Cargo.lock index 5353052eb..0f76d413f 100644 --- a/rust-lambda/Cargo.lock +++ b/rust-lambda/Cargo.lock @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "aws_lambda_events" -version = "0.18.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "831de96bc2c9d2e570664f4f016c8d56d86ce2a58b3a1d6268c4ba2f269684fe" +checksum = "ac59c9b189a3bd75146633e1c87f35fb727f53b03c7f331af789ff1293a9f350" dependencies = [ "base64 0.22.1", "bytes", @@ -1760,9 +1760,9 @@ dependencies = [ [[package]] name = "lambda_http" -version = "0.17.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c11fef0236dc427a2968c701697ae2ed3353cd6936be4d4f9ab471b0d6cf753b" +checksum = "a106755a9079a3ed20b4262e32c9a5efa127c97546cb2ecf69bbf3d17dbf970b" dependencies = [ "aws_lambda_events", "bytes", @@ -1772,7 +1772,7 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "hyper 1.7.0", - "lambda_runtime", + "lambda_runtime 1.0.1", "mime", "percent-encoding", "pin-project-lite", @@ -1797,7 +1797,32 @@ dependencies = [ "http-body-util", "http-serde", "hyper 1.7.0", - "lambda_runtime_api_client", + "lambda_runtime_api_client 0.12.4", + "pin-project", + "serde", + "serde_json", + "serde_path_to_error", + "tokio", + "tokio-stream", + "tower", + "tracing", +] + +[[package]] +name = "lambda_runtime" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46e566d19773ae483b0d32cc6045c5420d7b3eec6192ecb1c26ffa4e0091388a" +dependencies = [ + "async-stream", + "base64 0.22.1", + "bytes", + "futures", + "http 1.3.1", + "http-body-util", + "http-serde", + "hyper 1.7.0", + "lambda_runtime_api_client 1.0.1", "pin-project", "serde", "serde_json", @@ -1827,6 +1852,25 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "lambda_runtime_api_client" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c039f06329949692a81a993ede4cfaa6abab3ac8e72590cf7c5e6a64a9ec7b1" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "hyper 1.7.0", + "hyper-util", + "tower", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lazy_static" version = "1.5.0" @@ -2328,7 +2372,7 @@ dependencies = [ "email", "env_logger", "lambda_http", - "lambda_runtime", + "lambda_runtime 0.14.4", "log", "regex", "serde", diff --git a/rust-lambda/Cargo.toml b/rust-lambda/Cargo.toml index bdbf18374..9a5cb25ac 100644 --- a/rust-lambda/Cargo.toml +++ b/rust-lambda/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" authors = ["dylanlangston"] [dependencies] -lambda_http = "0.17.0" +lambda_http = "1.0.1" lambda_runtime = "0.14.2" log = "0.4.26" env_logger = "0.11.6"