xref: /cloud-hypervisor/pci/Cargo.toml (revision 7d7bfb2034001d4cb15df2ddc56d2d350c8da30f)
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.56"
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.9.0"
19libc = "0.2.122"
20log = "0.4.16"
21serde = "1.0.136"
22serde_derive = "1.0.136"
23thiserror = "1.0.30"
24versionize = "0.1.6"
25versionize_derive = "0.1.4"
26vm-allocator = { path = "../vm-allocator" }
27vm-device = { path = "../vm-device" }
28vm-memory = "0.7.0"
29vm-migration = { path = "../vm-migration" }
30
31[dependencies.vfio-bindings]
32version = "0.3.1"
33features = ["fam-wrappers"]
34