diff --git a/CHANGELOG.md b/CHANGELOG.md index 937e418..ff85e17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Updated [`tempfile`](https://github.com/Stebalien/tempfile) from 3.3.0 to 3.4.0 ([#567]) * Updated [`awc`](https://github.com/actix/actix-web) from 3.1.0 to 3.1.1 ([#568]) * Updated [`tokio`](https://github.com/tokio-rs/tokio) from 1.25.0 to 1.26.0 ([#569]) +* Updated [`serde_json`](https://github.com/serde-rs/json) from 1.0.93 to 1.0.94 ([#570]) [#566]: https://github.com/vbrandl/hoc/pull/566 [#567]: https://github.com/vbrandl/hoc/pull/567 [#568]: https://github.com/vbrandl/hoc/pull/568 [#569]: https://github.com/vbrandl/hoc/pull/569 +[#570]: https://github.com/vbrandl/hoc/pull/570 ## [0.31.0] 2023-02-13 diff --git a/Cargo.lock b/Cargo.lock index 21061f2..35a971e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1815,9 +1815,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" +checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index d8ca676..ad5ce52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ openssl-probe = "0.1.5" reqwest = "0.11.14" serde = "1.0.152" serde_derive = "1.0.137" -serde_json = "1.0.93" +serde_json = "1.0.94" tracing = "0.1.37" tracing-actix-web = "0.7.2" tracing-bunyan-formatter = "0.3.6"