1[package] 2name = "vm-device" 3version = "0.1.0" 4authors = ["The Cloud Hypervisor Authors"] 5edition = "2018" 6 7[features] 8default = [] 9kvm = ["vfio-ioctls/kvm"] 10 11[dependencies] 12anyhow = "1.0" 13thiserror = "1.0" 14serde = {version = ">=1.0.27", features = ["rc"] } 15serde_derive = ">=1.0.27" 16serde_json = ">=1.0.9" 17vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false } 18vm-memory = { version = "0.5.0", features = ["backend-mmap"] } 19vmm-sys-util = ">=0.3.1" 20 21