From e877718b29f68b639c91ddc3b9d50e8fe1604d65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Aug 2021 01:34:48 +0000 Subject: [PATCH] build: bump serde from 1.0.129 to 1.0.130 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.129 to 1.0.130. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.129...v1.0.130) --- 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 15f86f028..a8c831861 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,9 +916,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.129" +version = "1.0.130" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1f72836d2aa753853178eda473a3b9d8e4eefdaf20523b919677e6de489f8f1" +checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" [[package]] name = "serde_derive" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index a300010e6..7836bb4fa 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.101" linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } thiserror = "1.0.26" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index a855bd455..d5fb42fc7 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" [dependencies] libc = "0.2.101" -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 063bb82df..757294a88 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.9.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"], optional = true } mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "master", features = ["with-serde", "fam-wrappers"], optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "master", optional = true} -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 7d53beea0..ee9dac265 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -10,7 +10,7 @@ libc = "0.2.101" log = "0.4.14" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.129" +serde = "1.0.130" 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 98200e5ec..db2cb4864 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 = { git = "https://github.com/rust-vmm/seccompiler"} -serde = "1.0.129" +serde = "1.0.130" serde_derive = "1.0.130" serde_json = "1.0.67" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index a7b7ecef2..349693c4f 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -11,7 +11,7 @@ kvm = ["vfio-ioctls/kvm"] [dependencies] anyhow = "1.0.43" thiserror = "1.0.26" -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 0ecabcc3e..7e66137fb 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] anyhow = "1.0.43" thiserror = "1.0.26" -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" versionize = "0.1.6" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 38d2ba91c..758697488 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 = { git = "https://github.com/rust-vmm/seccompiler"} -serde = { version = "1.0.129", features = ["rc"] } +serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" signal-hook = "0.3.9"