cloud-hypervisor/Cargo.toml
Samuel Ortiz d5f5648b37 vendor: Add vendored dependencies
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>
2019-06-04 17:51:52 +02:00

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"