From 2aaf0540b657f45578939d44cec4140a23163fbe Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 30 Dec 2020 13:11:06 +0000 Subject: [PATCH] hypervisor: drop linux-loader dependency It is not used anywhere inside the hypervisor crate. Signed-off-by: Wei Liu --- Cargo.lock | 1 - hypervisor/Cargo.toml | 4 ---- 2 files changed, 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dd15c0c0..506ae42a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -434,7 +434,6 @@ dependencies = [ "kvm-bindings", "kvm-ioctls", "libc", - "linux-loader", "log 0.4.11", "mshv-bindings", "mshv-ioctls", diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 62dace653..b0aaf229a 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -27,10 +27,6 @@ serde_json = ">=1.0.9" vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] } -[dependencies.linux-loader] -git = "https://github.com/rust-vmm/linux-loader" -features = ["elf", "bzimage"] - [target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86] version = "1.10" default-features = false