From 8f6a5f979d8c12183c49f48fe85c14d268a197c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Aug 2021 06:51:21 +0000 Subject: [PATCH] build: bump serde from 1.0.127 to 1.0.129 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.127 to 1.0.129. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.127...v1.0.129) --- 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 8af6af028..39096e4dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,9 +916,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.127" +version = "1.0.129" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f03b9878abf6d14e6779d3f24f07b2cfa90352cfec4acc5aab8f1ac7f146fae8" +checksum = "d1f72836d2aa753853178eda473a3b9d8e4eefdaf20523b919677e6de489f8f1" [[package]] name = "serde_derive" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 73ac415f5..fdbcb7605 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.100" linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" -serde = { version = "1.0.127", features = ["rc"] } +serde = { version = "1.0.129", 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 e053bc336..49ddca006 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" [dependencies] libc = "0.2.100" -serde = { version = "1.0.127", features = ["rc"] } +serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" serde_json = "1.0.66" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index ac015ba90..daa205879 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.127", features = ["rc"] } +serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" serde_json = "1.0.66" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 1d9813669..00c060005 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -10,7 +10,7 @@ libc = "0.2.100" log = "0.4.14" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.127" +serde = "1.0.129" 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 0aad24125..828792cde 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.127" +serde = "1.0.129" serde_derive = "1.0.129" serde_json = "1.0.66" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 164eff486..b922d337d 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.127", features = ["rc"] } +serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" serde_json = "1.0.66" 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 58934215b..61f912ff2 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.127", features = ["rc"] } +serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" serde_json = "1.0.66" versionize = "0.1.6" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index c0571e1cc..b456c13f6 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.127", features = ["rc"] } +serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" serde_json = "1.0.66" signal-hook = "0.3.9"