From 4052a89268b11b35c3cc51242d3f431b44f19e5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Aug 2022 07:42:26 +0000 Subject: [PATCH] build: bump serde from 1.0.141 to 1.0.142 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.141 to 1.0.142. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.141...v1.0.142) --- 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 fbb829383..91dfbbb48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -959,18 +959,18 @@ checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1" [[package]] name = "serde" -version = "1.0.141" +version = "1.0.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7af873f2c95b99fcb0bd0fe622a43e29514658873c8ceba88c4cb88833a22500" +checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.141" +version = "1.0.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75743a150d003dd863b51dc809bcad0d73f2102c53632f1e954e738192a3413f" +checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 207064b70..3a5fe882e 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -15,7 +15,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.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", features = ["rc", "derive"] } thiserror = "1.0.31" uuid = "1.1.1" versionize = "0.1.6" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 620bc59b1..d86f0d22a 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.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", features = ["rc", "derive"] } serde_json = "1.0.82" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index e9e055384..88b6b6b35 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-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.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", features = ["rc", "derive"] } serde_with = { version = "2.0.0", default-features = false, features = ["macros"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 59dd31dc1..512932851 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.141" +serde = "1.0.142" 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 fb6c5e4a4..4b37e9909 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.141", features=["derive"] } +serde = { version="1.0.142", 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 460b1a99c..aa904187f 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] clap = { version = "3.2.16", features = ["wrap_help","cargo"] } dirs = "4.0.0" -serde = { version = "1.0.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", 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 3c7ccc960..f27766dec 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.141", features=["derive"] } +serde = { version="1.0.142", 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 37c0e6591..05d241872 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.59" hypervisor = { path = "../hypervisor" } thiserror = "1.0.31" -serde = { version = "1.0.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", features = ["rc", "derive"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap"] } vmm-sys-util = "0.10.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index ac2f9f3d2..38ae784de 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.59" thiserror = "1.0.31" -serde = { version = "1.0.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", 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 15ab9d0b1..0c5a073fb 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.141", features = ["rc", "derive"] } +serde = { version = "1.0.142", features = ["rc", "derive"] } serde_json = "1.0.82" signal-hook = "0.3.14" thiserror = "1.0.31"