[package] name = "vhost-user-backend" version = "0.10.1" authors = ["The Cloud Hypervisor Authors"] keywords = ["vhost-user", "virtio"] description = "A framework to build vhost-user backend service daemon" repository = "https://github.com/rust-vmm/vhost" edition = "2018" license = "Apache-2.0" [features] xen = ["vm-memory/xen", "vhost/xen"] [dependencies] libc = "0.2.39" log = "0.4.17" vhost = { path = "../vhost", version = "0.8", features = ["vhost-user-slave"] } virtio-bindings = "0.2.1" virtio-queue = "0.9.0" vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = "0.11.0" [dev-dependencies] nix = "0.26" vhost = { path = "../vhost", version = "0.8", features = ["test-utils", "vhost-user-master", "vhost-user-slave"] } vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } tempfile = "3.2.0"