From 15f544c995de854ef136ac366373ad452577cc93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 20:51:31 -0400 Subject: [PATCH] build(deps): bump the serde group with 2 updates (#993) Bumps the serde group with 2 updates: [serde](https://github.com/serde-rs/serde) and [serde_json](https://github.com/serde-rs/json). Updates `serde` from 1.0.208 to 1.0.209 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.209) Updates `serde_json` from 1.0.125 to 1.0.127 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.125...1.0.127) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: serde - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: serde ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ crates/devolutions-pedm-shared/Cargo.toml | 4 ++-- crates/devolutions-pedm/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d2da40c..00aea209 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4453,9 +4453,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.208" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] @@ -4471,9 +4471,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.208" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2 1.0.86", "quote 1.0.36", @@ -4506,9 +4506,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.125" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ "itoa", "memchr", diff --git a/crates/devolutions-pedm-shared/Cargo.toml b/crates/devolutions-pedm-shared/Cargo.toml index 2ad940ca..41fbb2ee 100644 --- a/crates/devolutions-pedm-shared/Cargo.toml +++ b/crates/devolutions-pedm-shared/Cargo.toml @@ -9,10 +9,10 @@ publish = false [dependencies] anyhow ={ version = "1.0.86", optional = true } -serde = { version = "1.0.208", features = ["derive"], optional = true } +serde = { version = "1.0.209", features = ["derive"], optional = true } win-api-wrappers = { path = "../win-api-wrappers", optional = true } hyper = { version = "~0.14", features = ["client", "http1"], optional = true } # old version required for OpenAPI generator -serde_json = { version = "1.0.125", optional = true } +serde_json = { version = "1.0.127", optional = true } tokio = { version = "1.38.0", features = ["net", "sync"], optional = true } glob = { version = "0.3.1", optional = true } regex = { version = "1.10.4", optional = true } diff --git a/crates/devolutions-pedm/Cargo.toml b/crates/devolutions-pedm/Cargo.toml index 23e26b96..b83f081d 100644 --- a/crates/devolutions-pedm/Cargo.toml +++ b/crates/devolutions-pedm/Cargo.toml @@ -19,8 +19,8 @@ digest = "0.10.7" hyper = { version = "1.3.1", features = ["server"] } hyper-util = { version = "0.1.5", features = ["tokio"] } schemars = "0.8.21" -serde = "1.0.208" -serde_json = "1.0.125" +serde = "1.0.209" +serde_json = "1.0.127" sha1 = "0.10.6" sha2 = "0.10.8" tokio = { version = "1.38.0", features = ["net", "rt-multi-thread"] }