diff --git a/Cargo.lock b/Cargo.lock index 6328ef7..617b50d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.2.0", "vm-memory", "vmm-sys-util", ] @@ -436,7 +436,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.2.0", "vm-memory", "vmm-sys-util", ] @@ -451,7 +451,7 @@ dependencies = [ "log", "vhost", "virtio-bindings", - "virtio-queue", + "virtio-queue 0.1.0", "vm-memory", "vmm-sys-util", ] @@ -473,6 +473,17 @@ dependencies = [ "vmm-sys-util", ] +[[package]] +name = "virtio-queue" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3785325315e6496fa88673842ee6cd198b9658e88e8b0e1ad48a5dc818b221dc" +dependencies = [ + "log", + "vm-memory", + "vmm-sys-util", +] + [[package]] name = "vm-memory" version = "0.7.0" diff --git a/i2c/Cargo.toml b/i2c/Cargo.toml index 3b96cd5..212c043 100644 --- a/i2c/Cargo.toml +++ b/i2c/Cargo.toml @@ -20,10 +20,10 @@ thiserror = "1.0" vhost = { version = "0.3", features = ["vhost-user-slave"] } vhost-user-backend = "0.1" virtio-bindings = ">=0.1" -virtio-queue = "0.1" +virtio-queue = "0.2" vm-memory = "0.7" vmm-sys-util = "=0.9.0" [dev-dependencies] -virtio-queue = { version = "0.1", features = ["test-utils"] } +virtio-queue = { version = "0.2", features = ["test-utils"] } vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/rng/Cargo.toml b/rng/Cargo.toml index 8578ec5..092b9bb 100644 --- a/rng/Cargo.toml +++ b/rng/Cargo.toml @@ -21,10 +21,10 @@ thiserror = "1.0" vhost = { version = "0.3", features = ["vhost-user-slave"] } vhost-user-backend = "0.1" virtio-bindings = ">=0.1" -virtio-queue = "0.1" +virtio-queue = "0.2" vm-memory = ">=0.7" vmm-sys-util = ">=0.9.0" [dev-dependencies] -virtio-queue = { version = "0.1", features = ["test-utils"] } +virtio-queue = { version = "0.2", features = ["test-utils"] } vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }