[package] name = "vhost-device-rng" version = "0.1.0" authors = ["Mathieu Poirier "] description = "vhost RNG backend device" repository = "https://github.com/rust-vmm/vhost-device" readme = "README.md" keywords = ["rng", "vhost", "virt", "backend"] license = "Apache-2.0 OR BSD-3-Clause" edition = "2021" [features] xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"] [dependencies] clap = { version = "4.5", features = ["derive"] } env_logger = "0.11" epoll = "4.4" libc = "0.2" log = "0.4" rand = "0.10.0" tempfile = "3.26" thiserror = "2.0" vhost = { git = "https://git.dsg.is/dsg/vhost.git", features = ["vhost-user-backend"] } vhost-user-backend = { git = "https://git.dsg.is/dsg/vhost.git" } virtio-bindings = "0.2.5" virtio-queue = "0.17" vm-memory = "0.17.1" vmm-sys-util = "0.15" [dev-dependencies] assert_matches = "1.5" virtio-queue = { version = "0.17", features = ["test-utils"] } vm-memory = { version = "0.17", features = ["backend-mmap", "backend-atomic"] } [lints] workspace = true