From 3277c27e0dd0ec5d0a36e5edccf746747e14f88b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 May 2022 16:41:59 +0000 Subject: [PATCH] build: bump serde_derive from 1.0.136 to 1.0.137 Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.136 to 1.0.137. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.136...v1.0.137) --- 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 +- 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 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ed4c4dda..68282167a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -908,9 +908,9 @@ checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" [[package]] name = "serde_derive" -version = "1.0.136" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" +checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 7ccb87cc5..f58e2bea4 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ libc = "0.2.124" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.16" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" 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 5974fcac6..46eb40257 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] libc = "0.2.124" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index d398c8d5a..55ad6cad3 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.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.9.0", features = ["with-serde"] } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 5edfd1561..aa951cc14 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -19,7 +19,7 @@ vmm-sys-util = "0.9.0" libc = "0.2.124" log = "0.4.16" serde = "1.0.137" -serde_derive = "1.0.136" +serde_derive = "1.0.137" 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 1e30dbe02..1ff90a1da 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" clap = { version = "3.1.14", features = ["wrap_help","cargo"] } dirs = "4.0.0" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" test_infra = { path = "../test_infra" } thiserror = "1.0.31" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 9dedcb5d7..aeea6d789 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.137" -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" thiserror = "1.0.31" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index aa07495ec..042156151 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.57" thiserror = "1.0.31" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", 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 0c9278b70..07d32075a 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" anyhow = "1.0.57" thiserror = "1.0.31" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 3db0db0ac..b2f90aa5b 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -39,7 +39,7 @@ pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" serde = { version = "1.0.137", features = ["rc"] } -serde_derive = "1.0.136" +serde_derive = "1.0.137" serde_json = "1.0.80" signal-hook = "0.3.13" thiserror = "1.0.31"