diff --git a/CHANGELOG.md b/CHANGELOG.md index aca174f..88c3f50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 💄 style(domain)-enhance readability with format string(pr [#100]) - 🔧 chore(config)-streamline renovate configuration(pr [#101]) +### Fixed + +- deps: update rust crate lambda_runtime to 0.14.3(pr [#102]) + ## [0.2.32] - 2025-06-28 ### Security @@ -334,6 +338,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#99]: https://github.com/jerus-org/lambda_sqs/pull/99 [#100]: https://github.com/jerus-org/lambda_sqs/pull/100 [#101]: https://github.com/jerus-org/lambda_sqs/pull/101 +[#102]: https://github.com/jerus-org/lambda_sqs/pull/102 [Unreleased]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.32...HEAD [0.2.32]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.31...v0.2.32 [0.2.31]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.30...v0.2.31 diff --git a/Cargo.lock b/Cargo.lock index e7e8834..5112ece 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,6 +75,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "bitflags" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" + [[package]] name = "bytes" version = "1.9.0" @@ -276,6 +282,17 @@ dependencies = [ "tracing", ] +[[package]] +name = "io-uring" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" +dependencies = [ + "bitflags", + "cfg-if", + "libc", +] + [[package]] name = "itoa" version = "1.0.14" @@ -284,20 +301,18 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "lambda_runtime" -version = "0.14.2" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64945a7a718d04acbbd06fa8acdc37576f4dfbd8982932365b72907e7b2b27e" +checksum = "b155960b864ababcc5ab553c9336e46db8ed0ad1cd38dc3be9e7c37b177aa310" dependencies = [ "async-stream", "base64", "bytes", "futures", "http", - "http-body", "http-body-util", "http-serde", "hyper", - "hyper-util", "lambda_runtime_api_client", "pin-project", "serde", @@ -306,15 +321,14 @@ dependencies = [ "tokio", "tokio-stream", "tower", - "tower-layer", "tracing", ] [[package]] name = "lambda_runtime_api_client" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df2589b440f900f61fc6d5cd26f71f0e75dcc7610bdbb88a56f0d308e1c35b42" +checksum = "5e55fdc596aea5afeb406e549990b4fb4bfd7bbfe4f574282c4c3aacf22e73e7" dependencies = [ "bytes", "futures-channel", @@ -324,9 +338,7 @@ dependencies = [ "http-body-util", "hyper", "hyper-util", - "tokio", "tower", - "tower-service", "tracing", "tracing-subscriber", ] @@ -620,15 +632,17 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.1" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "pin-project-lite", + "slab", "socket2", "tokio-macros", "windows-sys", diff --git a/Cargo.toml b/Cargo.toml index 7eed002..e028af8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ exclude = [ [dependencies] serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" -lambda_runtime = "0.14.2" +lambda_runtime = "0.14.3" [dev-dependencies] tokio = "1.45.1"