xref: /cloud-hypervisor/pci/Cargo.toml (revision f7f2f25a574b1b2dba22c094fc8226d404157d15)
1[package]
2name = "pci"
3version = "0.1.0"
4authors = ["Samuel Ortiz <sameo@linux.intel.com>"]
5edition = "2018"
6
7[dependencies]
8anyhow = "1.0.42"
9byteorder = "1.4.3"
10hypervisor = { path = "../hypervisor" }
11vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master" }
12vmm-sys-util = "0.8.0"
13libc = "0.2.98"
14log = "0.4.14"
15thiserror = "1.0.26"
16versionize = "0.1.6"
17versionize_derive = "0.1.4"
18vm-allocator = { path = "../vm-allocator" }
19vm-device = { path = "../vm-device" }
20vm-memory = "0.6.0"
21vm-migration = { path = "../vm-migration" }
22
23[dependencies.vfio-bindings]
24version = "0.2.0"
25features = ["fam-wrappers"]
26