diff --git a/CHANGELOG.md b/CHANGELOG.md index 88c3f50..e601613 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - deps: update rust crate lambda_runtime to 0.14.3(pr [#102]) +- deps: update rust crate serde_json to 1.0.141(pr [#103]) ## [0.2.32] - 2025-06-28 @@ -339,6 +340,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#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 +[#103]: https://github.com/jerus-org/lambda_sqs/pull/103 [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 5112ece..7db6fc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,9 +549,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.140" +version = "1.0.141" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" +checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index e028af8..71044b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ exclude = [ [dependencies] serde = { version = "1.0.219", features = ["derive"] } -serde_json = "1.0.140" +serde_json = "1.0.141" lambda_runtime = "0.14.3" [dev-dependencies]