diff --git a/CHANGELOG.md b/CHANGELOG.md index a1a99f5..52a68db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed + +- deps: update rust crate serde_json to 1.0.143(pr [#106]) + ## [0.2.33] - 2025-07-28 ### Changed @@ -345,6 +351,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#103]: https://github.com/jerus-org/lambda_sqs/pull/103 [#104]: https://github.com/jerus-org/lambda_sqs/pull/104 [#105]: https://github.com/jerus-org/lambda_sqs/pull/105 +[#106]: https://github.com/jerus-org/lambda_sqs/pull/106 +[Unreleased]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.33...HEAD [0.2.33]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.32...v0.2.33 [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 485f87c..dcecd97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,9 +549,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.141" +version = "1.0.143" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3" +checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index a991881..da92bce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ exclude = [ [dependencies] serde = { version = "1.0.219", features = ["derive"] } -serde_json = "1.0.141" +serde_json = "1.0.143" lambda_runtime = "0.14.3" [dev-dependencies]