From 6d63018d9f1899b901dedd4677c48ef1849a1acd Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 10 Feb 2021 09:54:08 +0000 Subject: [PATCH] build(deps): bump vm-memory from 0.4.0 to 0.5.0 Bumps [vm-memory](https://github.com/rust-vmm/vm-memory) from 0.4.0 to 0.5.0. - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vm-memory/compare/v0.4.0...v0.5.0) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- acpi_tables/Cargo.toml | 2 +- arch/Cargo.toml | 2 +- block_util/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- vhost_user_backend/Cargo.toml | 2 +- vhost_user_block/Cargo.toml | 2 +- vhost_user_net/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-allocator/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-virtio/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 17 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 977ae6277..7384fd43d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1555,9 +1555,9 @@ dependencies = [ [[package]] name = "vm-memory" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45b5b0a6f371f8147143b1adb95edddafc9cb9e40adaf94edb6f93a1d04b0330" +checksum = "625f401b1b8b3ac3d43f53903cd138cfe840bd985f8581e553027b31d2bb8ae8" dependencies = [ "arc-swap", "libc", diff --git a/Cargo.toml b/Cargo.toml index 1858b9421..fbc95643f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ signal-hook = "0.3.4" thiserror = "1.0" vmm = { path = "vmm" } vmm-sys-util = "0.7.0" -vm-memory = "0.4.0" +vm-memory = "0.5.0" wait-timeout = "0.2.0" [build-dependencies] diff --git a/acpi_tables/Cargo.toml b/acpi_tables/Cargo.toml index ea135ea3c..ae75d27f4 100644 --- a/acpi_tables/Cargo.toml +++ b/acpi_tables/Cargo.toml @@ -5,5 +5,5 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2018" [dependencies] -vm-memory = "0.4.0" +vm-memory = "0.5.0" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 066db8bbd..6efa1a0b3 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -16,7 +16,7 @@ log = "0.4.14" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" -vm-memory = { version = "0.4.0", features = ["backend-mmap"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap"] } vm-migration = { path = "../vm-migration" } acpi_tables = { path = "../acpi_tables", optional = true } arch_gen = { path = "../arch_gen" } diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index 7e85221ac..55eaf88af 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -18,7 +18,7 @@ serde_derive = ">=1.0.27" serde_json = ">=1.0.9" thiserror = "1.0" virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = ">=0.3.1" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 0395003cd..6adc41abb 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -15,7 +15,7 @@ serde_derive = ">=1.0.27" serde_json = ">=1.0.9" vm-device = { path = "../vm-device" } acpi_tables = { path = "../acpi_tables", optional = true } -vm-memory = "0.4.0" +vm-memory = "0.5.0" vm-migration = { path = "../vm-migration" } vmm-sys-util = ">=0.3.1" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 34bfc1733..b5fc5b23f 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -24,7 +24,7 @@ mshv-ioctls = { git = "https://github.com/cloud-hypervisor/mshv", branch = "mast serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] } [target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86] diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index ed9b2b391..042515dc5 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ net_gen = { path = "../net_gen" } rand = "0.8.3" serde = "1.0.123" virtio-bindings = "0.1.0" -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = ">=0.3.1" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 1abe6d61b..af4da4ca6 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -17,7 +17,7 @@ serde_derive = ">=1.0.27" serde_json = ">=1.0.9" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = "0.4.0" +vm-memory = "0.5.0" vm-migration = { path = "../vm-migration" } [dependencies.vfio-bindings] diff --git a/vhost_user_backend/Cargo.toml b/vhost_user_backend/Cargo.toml index 21359d983..0b1ad6303 100644 --- a/vhost_user_backend/Cargo.toml +++ b/vhost_user_backend/Cargo.toml @@ -12,7 +12,7 @@ epoll = ">=4.0.1" libc = "0.2.86" log = "0.4.14" virtio-bindings = "0.1.0" -vm-memory = "0.4.0" +vm-memory = "0.5.0" vm-virtio = { path = "../vm-virtio" } vmm-sys-util = ">=0.3.1" vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index 3b38eed56..2b64dd071 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -15,5 +15,5 @@ qcow = { path = "../qcow" } vhost_user_backend = { path = "../vhost_user_backend" } vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" -vm-memory = "0.4.0" +vm-memory = "0.5.0" vmm-sys-util = ">=0.3.1" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index 77ea402f2..cd84df207 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -14,5 +14,5 @@ option_parser = { path = "../option_parser" } vhost_user_backend = { path = "../vhost_user_backend" } vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" -vm-memory = "0.4.0" +vm-memory = "0.5.0" vmm-sys-util = ">=0.3.1" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 5e0d8e9f5..669e3a197 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -30,7 +30,7 @@ vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", packa virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vm-migration = { path = "../vm-migration" } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = ">=0.3.1" diff --git a/vm-allocator/Cargo.toml b/vm-allocator/Cargo.toml index 422739ae6..fec359f80 100644 --- a/vm-allocator/Cargo.toml +++ b/vm-allocator/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] libc = "0.2.86" -vm-memory = "0.4.0" +vm-memory = "0.5.0" arch = { path = "../arch" } diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 1fc173b6c..81dd3a11c 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -10,6 +10,6 @@ thiserror = "1.0" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" -vm-memory = { version = "0.4.0", features = ["backend-mmap"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap"] } vmm-sys-util = ">=0.3.1" diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 45b7df82e..3f434e7f0 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -13,4 +13,4 @@ serde = ">=1.0.27" serde_derive = ">=1.0.27" serde_json = ">=1.0.9" virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } \ No newline at end of file +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } \ No newline at end of file diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index a84128b54..194f6a5bb 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -44,7 +44,7 @@ vfio-ioctls = { git = "https://github.com/cloud-hypervisor/vfio-ioctls", branch virtio-devices = { path = "../virtio-devices" } vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vm-migration = { path = "../vm-migration" } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] }