diff --git a/Cargo.lock b/Cargo.lock index ed423cf3b..01da25c9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -460,8 +460,6 @@ version = "0.1.0" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "devices 0.1.0", - "kvm-bindings 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvm-ioctls 0.2.0 (git+https://github.com/rust-vmm/kvm-ioctls)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "vm-allocator 0.1.0", diff --git a/pci/Cargo.toml b/pci/Cargo.toml index a89549eb8..ea849f605 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -8,8 +8,6 @@ edition = "2018" vm-allocator = { path = "../vm-allocator" } byteorder = "1.3.2" devices = { path = "../devices" } -kvm-bindings = "0.1.1" -kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "master" } libc = "0.2.60" log = "0.4.8" vm-memory = { git = "https://github.com/rust-vmm/vm-memory" } diff --git a/pci/src/lib.rs b/pci/src/lib.rs index eb7921787..c8b261d3e 100644 --- a/pci/src/lib.rs +++ b/pci/src/lib.rs @@ -6,7 +6,6 @@ #[macro_use] extern crate log; extern crate devices; -extern crate kvm_ioctls; extern crate vm_memory; extern crate vmm_sys_util;