mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 19:41:27 +00:00
13a065d2cd
In order to have access to the newly added signal_msi() function from the kvm-ioctls crate, this commit updates the version of the kvm-ioctls to the latest one. Because set_user_memory_region() has been swtiched to "unsafe", we also need to handle this small change in our cloud-hypervisor code directly. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
17 lines
481 B
TOML
17 lines
481 B
TOML
[package]
|
|
name = "pci"
|
|
version = "0.1.0"
|
|
authors = ["Samuel Ortiz <sameo@linux.intel.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
vm-allocator = { path = "../vm-allocator" }
|
|
byteorder = "*"
|
|
devices = { path = "../devices" }
|
|
kvm-bindings = "0.1"
|
|
kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "master" }
|
|
libc = ">=0.2.39"
|
|
log = "*"
|
|
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
|
|
vmm-sys-util = { git = "https://github.com/rust-vmm/vmm-sys-util" }
|