1[package] 2name = "virtio-devices" 3version = "0.1.0" 4authors = ["The Cloud Hypervisor Authors"] 5edition = "2021" 6 7[features] 8default = [] 9mshv = [] 10 11[dependencies] 12anyhow = "1.0.56" 13arc-swap = "1.5.0" 14block_util = { path = "../block_util" } 15byteorder = "1.4.3" 16epoll = "4.3.1" 17event_monitor = { path = "../event_monitor" } 18io-uring = "0.5.2" 19libc = "0.2.122" 20log = "0.4.16" 21net_gen = { path = "../net_gen" } 22net_util = { path = "../net_util" } 23pci = { path = "../pci" } 24rate_limiter = { path = "../rate_limiter" } 25seccompiler = "0.2.0" 26serde = "1.0.136" 27serde_derive = "1.0.136" 28serde_json = "1.0.79" 29thiserror = "1.0.30" 30versionize = "0.1.6" 31versionize_derive = "0.1.4" 32vhost = { version = "0.4.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] } 33virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] } 34virtio-queue = "0.2.0" 35vm-allocator = { path = "../vm-allocator" } 36vm-device = { path = "../vm-device" } 37vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } 38vm-migration = { path = "../vm-migration" } 39vm-virtio = { path = "../vm-virtio" } 40vmm-sys-util = "0.9.0" 41