diff --git a/CHANGELOG.md b/CHANGELOG.md index 479a405..b5ad645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Updated [`futures`](https://github.com/rust-lang/futures-rs) from 0.3.24 to 0.3.25 ([#511]) * Updated [`serde_json`](https://github.com/serde-rs/json) from 1.0.86 to 1.0.87 ([#510]) +* Updated [`serde`](https://github.com/serde-rs/serde) from 1.0.145 to 1.0.147 ([#512]) [#511]: https://github.com/vbrandl/hoc/pull/511 [#510]: https://github.com/vbrandl/hoc/pull/510 +[#512]: https://github.com/vbrandl/hoc/pull/512 ## [0.26.0] 2022-10-03 diff --git a/Cargo.lock b/Cargo.lock index 7057840..76d8d61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1742,18 +1742,18 @@ checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c" [[package]] name = "serde" -version = "1.0.145" +version = "1.0.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b" +checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.145" +version = "1.0.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c" +checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index bf2ebf3..e5cf41e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ mime = "0.3" number_prefix = "0.4.0" openssl-probe = "0.1.5" reqwest = "0.11.12" -serde = "1.0.145" +serde = "1.0.147" serde_derive = "1.0.137" serde_json = "1.0.87" tracing = "0.1.37"