From 269b78ca0f86b109e6142cc7434c20f6b5f89875 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Jul 2022 12:10:55 +0000 Subject: [PATCH] build: bump serde from 1.0.139 to 1.0.140 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.139 to 1.0.140. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.139...v1.0.140) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- arch/Cargo.toml | 2 +- event_monitor/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- performance-metrics/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a2c41361..7bb8baa1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -913,18 +913,18 @@ checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1" [[package]] name = "serde" -version = "1.0.139" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0171ebb889e45aa68b44aee0859b3eede84c6f5f5c228e6f140c0b2a0a46cad6" +checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.139" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1d3230c1de7932af58ad8ffbe1d784bd55efd5a9d84ac24f69c72d83543dfb" +checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index abcadb022..3f3df56c7 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -16,7 +16,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.126" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.17" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } thiserror = "1.0.31" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 8839be86e..c451e4a2f 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] libc = "0.2.126" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 87728eefe..6972bdf63 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -21,7 +21,7 @@ kvm-ioctls = { version = "0.11.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", 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.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.10.0", features = ["with-serde"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 835d030b3..3cd94b1ba 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.126" log = "0.4.17" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.139" +serde = "1.0.140" versionize = "0.1.6" versionize_derive = "0.1.4" virtio-bindings = "0.1.0" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 2643a83ed..c06e1a6b2 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -18,7 +18,7 @@ vfio_user = { path = "../vfio_user" } vmm-sys-util = "0.10.0" libc = "0.2.126" log = "0.4.17" -serde = { version="1.0.139", features=["derive"] } +serde = { version="1.0.140", features=["derive"] } thiserror = "1.0.31" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index a7e5061ad..d7130701b 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] clap = { version = "3.2.13", features = ["wrap_help","cargo"] } dirs = "4.0.0" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" test_infra = { path = "../test_infra" } thiserror = "1.0.31" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index fb7c3319f..53fcb6243 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -23,7 +23,7 @@ net_util = { path = "../net_util" } pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.2.0" -serde = { version="1.0.139", features=["derive"] } +serde = { version="1.0.140", features=["derive"] } serde_json = "1.0.82" thiserror = "1.0.31" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 407f6d066..796445990 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.58" hypervisor = { path = "../hypervisor" } thiserror = "1.0.31" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 01450743a..a3f6d1392 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.58" thiserror = "1.0.31" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 15c22342e..208aed535 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -39,7 +39,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" -serde = { version = "1.0.139", features = ["rc", "derive"] } +serde = { version = "1.0.140", features = ["rc", "derive"] } serde_json = "1.0.82" signal-hook = "0.3.14" thiserror = "1.0.31"