From c0827e01b1a777639f7ee15d725e5259b6f013ed Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 16 Nov 2020 11:56:15 +0000 Subject: [PATCH] build: Update arc-swap dependency to 1.0.0 Also bump the vm-memory version to one that depends on arc-swap 1.0.0 too. Signed-off-by: Rob Bradford --- Cargo.lock | 6 +++--- hypervisor/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 06b23660d..0be2d559d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,9 +52,9 @@ version = "0.1.0" [[package]] name = "arc-swap" -version = "0.4.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034" +checksum = "0688b520bcc7498f6ca8fa006e8031d353e3fd4f51bd4a50fb03cc4230b28bd2" [[package]] name = "arch" @@ -1612,7 +1612,7 @@ dependencies = [ [[package]] name = "vm-memory" version = "0.3.0" -source = "git+https://github.com/cloud-hypervisor/vm-memory?branch=ch#6f2f7107f29a8f2b66b64a849aeace20783ec8f3" +source = "git+https://github.com/cloud-hypervisor/vm-memory?branch=ch#66f0c8422ae2f2994676becfe3e0d95ef90bf104" dependencies = [ "arc-swap", "libc", diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 8bfd695a4..666d33093 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -10,7 +10,7 @@ kvm = [] [dependencies] anyhow = "1.0" -arc-swap = ">=0.4.4" +arc-swap = ">=1.0.0" thiserror = "1.0" libc = "0.2.80" log = "0.4.11" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 9514861d4..5efb62195 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -10,7 +10,7 @@ io_uring = ["block_util/io_uring"] [dependencies] anyhow = "1.0" -arc-swap = ">=0.4.4" +arc-swap = ">=1.0.0" block_util = { path = "../block_util" } byteorder = "1.3.4" epoll = ">=4.0.1" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 41692f549..fee5c547a 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -15,7 +15,7 @@ io_uring = ["virtio-devices/io_uring"] [dependencies] acpi_tables = { path = "../acpi_tables", optional = true } anyhow = "1.0" -arc-swap = ">=0.4.4" +arc-swap = ">=1.0.0" arch = { path = "../arch" } bitflags = ">=1.2.1" block_util = { path = "../block_util" }