From dc72ef42dc4d9596c8e096a394690e490f1d7fd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 23:50:36 +0000 Subject: [PATCH] build: Bump serde_with from 3.7.0 to 3.9.0 Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.7.0 to 3.9.0. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.7.0...v3.9.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- hypervisor/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10baa7aee..885f0cd2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1916,9 +1916,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.7.0" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a" +checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" dependencies = [ "serde", "serde_derive", @@ -1927,9 +1927,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.7.0" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655" +checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" dependencies = [ "darling", "proc-macro2", diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 475e3cf36..77111db76 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -26,7 +26,7 @@ mshv-bindings = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", feat ], optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", optional = true } serde = { version = "1.0.197", features = ["derive", "rc"] } -serde_with = { version = "3.7.0", default-features = false, features = [ +serde_with = { version = "3.9.0", default-features = false, features = [ "macros", ] } thiserror = "1.0.62" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index ed581e56d..60c3a0557 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -24,7 +24,7 @@ rate_limiter = { path = "../rate_limiter" } seccompiler = "0.4.0" serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.120" -serde_with = { version = "3.7.0", default-features = false, features = [ +serde_with = { version = "3.9.0", default-features = false, features = [ "macros", ] } serial_buffer = { path = "../serial_buffer" }