2019-04-18 09:59:12 +00:00
|
|
|
[package]
|
|
|
|
name = "pci"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Samuel Ortiz <sameo@linux.intel.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
vm-allocator = { path = "../vm-allocator" }
|
2019-08-02 11:02:17 +00:00
|
|
|
byteorder = "1.3.2"
|
2019-04-18 09:59:12 +00:00
|
|
|
devices = { path = "../devices" }
|
2019-08-02 11:02:17 +00:00
|
|
|
kvm-bindings = "0.1.1"
|
2019-06-03 21:09:01 +00:00
|
|
|
kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "master" }
|
2019-08-02 11:02:17 +00:00
|
|
|
libc = "0.2.60"
|
|
|
|
log = "0.4.8"
|
2019-04-18 09:59:12 +00:00
|
|
|
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
|
2019-06-04 11:23:52 +00:00
|
|
|
vmm-sys-util = { git = "https://github.com/rust-vmm/vmm-sys-util" }
|