mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Many of the workspace members in the Cloud-hypervisor workspace share common dependencies. Making these workspace dependencies reduces duplication and improves maintainability. Signed-off-by: Oliver Anderson <oliver.anderson@cyberus-technology.de> On-behalf-of: SAP oliver.anderson@sap.com
32 lines
913 B
TOML
32 lines
913 B
TOML
[package]
|
|
authors = ["Samuel Ortiz <sameo@linux.intel.com>"]
|
|
edition = "2021"
|
|
name = "pci"
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
kvm = ["hypervisor/kvm", "vfio-ioctls/kvm"]
|
|
mshv = ["hypervisor/mshv", "vfio-ioctls/mshv"]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
vfio-bindings = { workspace = true, features = ["fam-wrappers"] }
|
|
vfio-ioctls = { workspace = true, default-features = false }
|
|
vfio_user = { workspace = true }
|
|
vm-allocator = { path = "../vm-allocator" }
|
|
vm-device = { path = "../vm-device" }
|
|
vm-memory = { workspace = true, features = [
|
|
"backend-atomic",
|
|
"backend-bitmap",
|
|
"backend-mmap",
|
|
] }
|
|
vm-migration = { path = "../vm-migration" }
|
|
vmm-sys-util = { workspace = true }
|