1[package] 2name = "vhost-user-backend" 3version = "0.10.1" 4authors = ["The Cloud Hypervisor Authors"] 5keywords = ["vhost-user", "virtio"] 6description = "A framework to build vhost-user backend service daemon" 7repository = "https://github.com/rust-vmm/vhost" 8edition = "2018" 9license = "Apache-2.0" 10 11[features] 12xen = ["vm-memory/xen", "vhost/xen"] 13 14[dependencies] 15libc = "0.2.39" 16log = "0.4.17" 17vhost = { path = "../vhost", version = "0.8", features = ["vhost-user-slave"] } 18virtio-bindings = "0.2.1" 19virtio-queue = "0.9.0" 20vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic"] } 21vmm-sys-util = "0.11.0" 22 23[dev-dependencies] 24nix = "0.26" 25vhost = { path = "../vhost", version = "0.8", features = ["test-utils", "vhost-user-master", "vhost-user-slave"] } 26vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } 27tempfile = "3.2.0" 28