From aac87196d6233c17165fff9efc962114b70347e6 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 28 May 2020 15:06:54 +0000 Subject: [PATCH] build(deps): bump vm-memory from 0.2.0 to 0.2.1 Bumps [vm-memory](https://github.com/rust-vmm/vm-memory) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/v0.2.1/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vm-memory/compare/v0.2.0...v0.2.1) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- acpi_tables/Cargo.toml | 2 +- arch/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- vfio/Cargo.toml | 2 +- vhost_user_backend/Cargo.toml | 2 +- vhost_user_block/Cargo.toml | 2 +- vhost_user_fs/Cargo.toml | 2 +- vhost_user_net/Cargo.toml | 2 +- vm-allocator/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-virtio/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c06b2196c..d68958b02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1469,9 +1469,9 @@ dependencies = [ [[package]] name = "vm-memory" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98d50eb34b2ec250e098fbad7486e81f592a1bdeff2b10f0433638f3ce6a0828" +checksum = "41fb10d355a0de221e0524cb18491d3dc6e2a0981747f75fd0a3a12109f1712f" dependencies = [ "arc-swap", "libc", diff --git a/Cargo.toml b/Cargo.toml index 18b947624..9ced8b3b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ vhost_user_net = { path = "vhost_user_net"} virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} vmm = { path = "vmm" } vm-device = { path = "vm-device" } -vm-memory = "0.2.0" +vm-memory = "0.2.1" vmm-sys-util = "0.6.0" vm-virtio = { path = "vm-virtio" } vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } diff --git a/acpi_tables/Cargo.toml b/acpi_tables/Cargo.toml index 1a2fbc1cd..6c1926008 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.2.0" +vm-memory = "0.2.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 9d2b5ebdd..d6b800bb4 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -12,7 +12,7 @@ byteorder = "1.3.4" kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" } kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" } libc = "0.2.71" -vm-memory = { version = "0.2.0", features = ["backend-mmap"] } +vm-memory = { version = "0.2.1", features = ["backend-mmap"] } acpi_tables = { path = "../acpi_tables", optional = true } arch_gen = { path = "../arch_gen" } diff --git a/devices/Cargo.toml b/devices/Cargo.toml index bccd0699d..0ebafe0a0 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.2.0" +vm-memory = "0.2.1" vm-migration = { path = "../vm-migration" } vmm-sys-util = ">=0.3.1" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 4379131bb..b93e6686a 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -15,5 +15,5 @@ serde_derive = ">=1.0.27" serde_json = ">=1.0.9" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = "0.2.0" +vm-memory = "0.2.1" vm-migration = { path = "../vm-migration" } diff --git a/vfio/Cargo.toml b/vfio/Cargo.toml index c04455a4c..bc2c83696 100644 --- a/vfio/Cargo.toml +++ b/vfio/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4.8" pci = { path = "../pci" } vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.2.0", features = ["backend-mmap"] } +vm-memory = { version = "0.2.1", features = ["backend-mmap"] } vmm-sys-util = ">=0.3.1" [dependencies.vfio-bindings] diff --git a/vhost_user_backend/Cargo.toml b/vhost_user_backend/Cargo.toml index 019944d3a..07cae5ac9 100644 --- a/vhost_user_backend/Cargo.toml +++ b/vhost_user_backend/Cargo.toml @@ -14,7 +14,7 @@ epoll = ">=4.0.1" libc = "0.2.71" log = "0.4.8" virtio-bindings = "0.1.0" -vm-memory = "0.2.0" +vm-memory = "0.2.1" vm-virtio = { path = "../vm-virtio" } vmm-sys-util = ">=0.3.1" vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index 9f63bcb18..8bf6d40c5 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -13,7 +13,7 @@ qcow = { path = "../qcow" } vhost_user_backend = { path = "../vhost_user_backend" } vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" -vm-memory = "0.2.0" +vm-memory = "0.2.1" vm-virtio = { path = "../vm-virtio" } vmm = { path = "../vmm" } vmm-sys-util = ">=0.3.1" diff --git a/vhost_user_fs/Cargo.toml b/vhost_user_fs/Cargo.toml index 70a7d13e1..808a63ced 100644 --- a/vhost_user_fs/Cargo.toml +++ b/vhost_user_fs/Cargo.toml @@ -11,6 +11,6 @@ log = "0.4.8" # Match the version in vmm seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" } tempdir= "0.3.7" -vm-memory = "0.2.0" +vm-memory = "0.2.1" vm-virtio = { path = "../vm-virtio" } vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index 8e8aee883..fba89d4bf 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -13,7 +13,7 @@ net_util = { path = "../net_util" } vhost_user_backend = { path = "../vhost_user_backend" } vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" -vm-memory = "0.2.0" +vm-memory = "0.2.1" vm-virtio = { path = "../vm-virtio" } vmm = { path = "../vmm" } vmm-sys-util = ">=0.3.1" diff --git a/vm-allocator/Cargo.toml b/vm-allocator/Cargo.toml index 8ef7e2315..e785de228 100644 --- a/vm-allocator/Cargo.toml +++ b/vm-allocator/Cargo.toml @@ -6,4 +6,4 @@ edition = "2018" [dependencies] libc = "0.2.71" -vm-memory = "0.2.0" +vm-memory = "0.2.1" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index b65e9fa42..e6f9951cf 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.2.0", features = ["backend-mmap"] } +vm-memory = { version = "0.2.1", features = ["backend-mmap"] } vmm-sys-util = ">=0.3.1" diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 3d7f896b8..e446d053b 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -27,7 +27,7 @@ tempfile = "3.1.0" virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.2.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.2.1", features = ["backend-mmap", "backend-atomic"] } vm-migration = { path = "../vm-migration" } vmm-sys-util = ">=0.3.1" vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-master", "vhost-user-slave"] } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 209556a47..a0ee7f9f1 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -37,7 +37,7 @@ url = "2.1.1" vfio = { path = "../vfio", optional = true } vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.2.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.2.1", 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"] }