[package] name = "vhost-device-vsock" version = "0.2.0" authors = ["Harshavardhan Unnibhavi ", "Stefano Garzarella "] description = "A virtio-vsock device using the vhost-user protocol." repository = "https://github.com/rust-vmm/vhost-device" readme = "README.md" keywords = ["vhost", "vsock"] license = "Apache-2.0 OR BSD-3-Clause" edition = "2021" [features] xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"] [dependencies] byteorder = "1" clap = { version = "4.5", features = ["derive"] } env_logger = "0.11" epoll = "4.3.2" log = "0.4" thiserror = "1.0" vhost = { version = "0.11", features = ["vhost-user-backend"] } vhost-user-backend = "0.15" virtio-bindings = "0.2.2" virtio-queue = "0.12" virtio-vsock = "0.6" vm-memory = "0.14.1" vmm-sys-util = "0.12" figment = { version = "0.10.19", features = ["yaml"] } serde = { version = "1", features = ["derive"] } [dev-dependencies] assert_matches = "1.5" virtio-queue = { version = "0.12", features = ["test-utils"] } tempfile = "3.10.1"