mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Since the top-level Cargo.toml specifies a vmm-sys-util revision but not the sub crates, Cargo.lock points at 2 different crates. cargo vendor copies both of them into the vendor directory but forces the build to use the one coming from the top level driven requirement. Although this is a waste of space, this is a cargo vendor limitation that we have to live with for now. Also, because the dependency onto linux-loader had to be updated, we had to specify a newly introduced feature called "elf". Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
17 lines
299 B
TOML
17 lines
299 B
TOML
[package]
|
|
name = "linux-loader"
|
|
version = "0.1.0"
|
|
authors = ["cathy <cathy.zhang@intel.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0 AND BSD-3-Clause"
|
|
|
|
[features]
|
|
default = []
|
|
elf = []
|
|
bzImage = []
|
|
|
|
|
|
[dependencies.vm-memory]
|
|
git = "https://github.com/rust-vmm/vm-memory"
|
|
features = ["backend-mmap"]
|