From fb2b633ada57274e75cf417be003a4a7b5b32281 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Dec 2021 23:23:38 +0000 Subject: [PATCH] build: bump serde from 1.0.130 to 1.0.131 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.130 to 1.0.131. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.130...v1.0.131) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- arch/Cargo.toml | 2 +- event_monitor/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cfd6bd41c..b21c15977 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -918,9 +918,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.130" +version = "1.0.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" +checksum = "b4ad69dfbd3e45369132cc64e6748c2d65cdfb001a2b1c232d128b4ad60561c1" [[package]] name = "serde_derive" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 1d25e1717..756d4656f 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.109" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" thiserror = "1.0.30" versionize = "0.1.6" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 2df7f575d..0dc4f60ab 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" [dependencies] libc = "0.2.109" -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.72" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 5ea447b0e..bd3f4cd4e 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.11.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0", features = ["with-serde", "fam-wrappers"], optional = true } mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true} -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.72" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 54e5c76b2..04f8dcdcc 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.109" log = "0.4.14" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.130" +serde = "1.0.131" versionize = "0.1.6" versionize_derive = "0.1.4" virtio-bindings = "0.1.0" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 62d9b7bfd..e819f226f 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -24,7 +24,7 @@ net_util = { path = "../net_util" } pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.2.0" -serde = "1.0.130" +serde = "1.0.131" serde_derive = "1.0.130" serde_json = "1.0.72" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index a6620c82c..8c9d8ff91 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"] [dependencies] anyhow = "1.0.51" thiserror = "1.0.30" -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.72" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 60ac88db0..5eddc376e 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] anyhow = "1.0.51" thiserror = "1.0.30" -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.72" versionize = "0.1.6" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 3bca3f529..547eb0f4d 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -36,7 +36,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" -serde = { version = "1.0.130", features = ["rc"] } +serde = { version = "1.0.131", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.72" signal-hook = "0.3.12"