From ef9a388f87e5225b50b7a40bb9a15e657b1a4774 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jan 2022 04:25:22 +0000 Subject: [PATCH] build: bump serde_derive from 1.0.134 to 1.0.135 Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.134 to 1.0.135. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.134...v1.0.135) --- updated-dependencies: - dependency-name: serde_derive 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 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0264ec0e8..ea9b858fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -847,9 +847,9 @@ checksum = "96b3c34c1690edf8174f5b289a336ab03f568a4460d8c6df75f2f3a692b3bc6a" [[package]] name = "serde_derive" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784ed1fbfa13fe191077537b0d70ec8ad1e903cfe04831da608aa36457cb653d" +checksum = "8dcde03d87d4c973c04be249e7d8f0b35db1c848c487bd43032808e59dd8328d" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 9d3078a3b..53d2ca76c 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -18,7 +18,7 @@ libc = "0.2.113" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" serde = { version = "1.0.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" thiserror = "1.0.30" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 0bf7e51e4..38f00c7a7 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" [dependencies] libc = "0.2.113" serde = { version = "1.0.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 7b40b1f6a..86c27393a 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -21,7 +21,7 @@ kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branc 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.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.9.0", features = ["with-serde"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index ba0220123..278fb1f5b 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -24,7 +24,7 @@ pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.2.0" serde = "1.0.134" -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 4b737dc0e..d8e0abb8c 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.53" thiserror = "1.0.30" serde = { version = "1.0.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false } vm-memory = { version = "0.7.0", features = ["backend-mmap"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index c6743adb9..88985dfb8 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" anyhow = "1.0.53" thiserror = "1.0.30" serde = { version = "1.0.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 0685c2f3d..db94e2bfd 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -36,7 +36,7 @@ pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" serde = { version = "1.0.134", features = ["rc"] } -serde_derive = "1.0.134" +serde_derive = "1.0.135" serde_json = "1.0.78" signal-hook = "0.3.13" thiserror = "1.0.30"