diff --git a/Cargo.lock b/Cargo.lock index 740cef2..053c885 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -448,7 +448,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.5.0", "vm-memory", "vmm-sys-util", ] @@ -465,7 +465,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.5.0", "vm-memory", "vmm-sys-util", ] @@ -485,7 +485,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.5.0", "vm-memory", "vmm-sys-util", ] @@ -500,7 +500,7 @@ dependencies = [ "log", "vhost", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.4.0", "vm-memory", "vmm-sys-util", ] @@ -522,6 +522,18 @@ dependencies = [ "vmm-sys-util", ] +[[package]] +name = "virtio-queue" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4f59652909f276e6edd8bf36e9f106480b2202f5f046717b3de14f1b4072a28" +dependencies = [ + "log", + "virtio-bindings", + "vm-memory", + "vmm-sys-util", +] + [[package]] name = "vm-memory" version = "0.8.0" diff --git a/gpio/Cargo.toml b/gpio/Cargo.toml index e7fd757..8db53d6 100644 --- a/gpio/Cargo.toml +++ b/gpio/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "1.0" vhost = { version = "0.4", features = ["vhost-user-slave"] } vhost-user-backend = "0.5.1" virtio-bindings = ">=0.1" -virtio-queue = "0.4" +virtio-queue = "0.5" vm-memory = ">=0.8" vmm-sys-util = "=0.10.0" @@ -28,5 +28,5 @@ vmm-sys-util = "=0.10.0" libgpiod = { git = "https://github.com/vireshk/libgpiod" } [dev-dependencies] -virtio-queue = { version = "0.4", features = ["test-utils"] } +virtio-queue = { version = "0.5", features = ["test-utils"] } vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/i2c/Cargo.toml b/i2c/Cargo.toml index 2521a7f..ac0e615 100644 --- a/i2c/Cargo.toml +++ b/i2c/Cargo.toml @@ -20,10 +20,10 @@ thiserror = "1.0" vhost = { version = "0.4", features = ["vhost-user-slave"] } vhost-user-backend = "0.5.1" virtio-bindings = ">=0.1" -virtio-queue = "0.4" +virtio-queue = "0.5" vm-memory = ">=0.8" vmm-sys-util = "=0.10.0" [dev-dependencies] -virtio-queue = { version = "0.4", features = ["test-utils"] } +virtio-queue = { version = "0.5", features = ["test-utils"] } vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/rng/Cargo.toml b/rng/Cargo.toml index ab6aa7a..98aa8a6 100644 --- a/rng/Cargo.toml +++ b/rng/Cargo.toml @@ -21,10 +21,10 @@ thiserror = "1.0" vhost = { version = "0.4", features = ["vhost-user-slave"] } vhost-user-backend = "0.5.1" virtio-bindings = ">=0.1" -virtio-queue = "0.4" +virtio-queue = "0.5" vm-memory = ">=0.8" vmm-sys-util = "=0.10.0" [dev-dependencies] -virtio-queue = { version = "0.4", features = ["test-utils"] } +virtio-queue = { version = "0.5", features = ["test-utils"] } vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }