1[package] 2name = "pci" 3version = "0.1.0" 4authors = ["Samuel Ortiz <sameo@linux.intel.com>"] 5edition = "2021" 6 7[features] 8default = [] 9kvm = ["vfio-ioctls/kvm"] 10mshv = ["vfio-ioctls/mshv"] 11 12[dependencies] 13anyhow = "1.0.66" 14byteorder = "1.4.3" 15hypervisor = { path = "../hypervisor" } 16vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } 17vfio_user = { path = "../vfio_user" } 18vmm-sys-util = "0.11.0" 19libc = "0.2.137" 20log = "0.4.17" 21serde = { version = "1.0.147", features = ["derive"] } 22thiserror = "1.0.37" 23versionize = "0.1.6" 24versionize_derive = "0.1.4" 25vm-allocator = { path = "../vm-allocator" } 26vm-device = { path = "../vm-device" } 27vm-memory = "0.10.0" 28vm-migration = { path = "../vm-migration" } 29 30[dependencies.vfio-bindings] 31version = "0.3.1" 32features = ["fam-wrappers"] 33