vhost: Prepare v0.11.0 release

This release adds support for live migration, adding
dirty pages tracking and initial postcopy support.

Signed-off-by: German Maglione <gmaglione@redhat.com>
This commit is contained in:
German Maglione 2024-03-12 17:00:51 +01:00 committed by germag
parent 6ce9d36b1e
commit 0133c53d5d
3 changed files with 10 additions and 4 deletions

View file

@ -16,7 +16,7 @@ postcopy = ["vhost/postcopy", "userfaultfd"]
libc = "0.2.39"
log = "0.4.17"
userfaultfd = { version = "0.8.1", optional = true }
vhost = { path = "../vhost", version = "0.10", features = ["vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.11", features = ["vhost-user-backend"] }
virtio-bindings = "0.2.1"
virtio-queue = "0.11.0"
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
@ -24,6 +24,6 @@ vmm-sys-util = "0.12.1"
[dev-dependencies]
nix = { version = "0.28", features = ["fs"] }
vhost = { path = "../vhost", version = "0.10", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.11", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
tempfile = "3.2.0"