mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
We use cargo vendor to generate a .cargo/config file and the vendor directory. Vendoring allows us to lock our dependencies and to modify them easily from the top level Cargo.toml. We vendor all dependencies, including the crates.io ones, which allows for network isolated builds. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
23 lines
546 B
TOML
23 lines
546 B
TOML
[package]
|
|
name = "cloud-hypervisor"
|
|
version = "0.1.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "=2.27.1"
|
|
|
|
vmm = { path = "vmm" }
|
|
|
|
[dependencies.vm-memory]
|
|
git = "https://github.com/rust-vmm/vm-memory"
|
|
rev = "281b8bd6cd2927f7a65130194b203a1c2b0ad2e3"
|
|
|
|
[dependencies.vmm-sys-util]
|
|
git = "https://github.com/rust-vmm/vmm-sys-util"
|
|
rev = "60fe35bea0bdce8b36c6186a740878880f944bdc"
|
|
|
|
[dependencies.linux-loader]
|
|
git = "https://github.com/bjzhjing/linux-loader"
|
|
rev = "2b95f1e1958a2b6399b590f64344cab5b4a6d608"
|