vendor: Remove vendoring
The cargo interaction with the .cargo/config does not meet our requirements. Regardless of .cargo/config explicitly replacing our external sources with vendored ones, cargo build will rely first on Cargo.lock to update its local source cache. If a dependency has been push forced, build fails because of our top level Cargo.toml description. This prevents us from actually pinning dependencies, which defeats the vendoring purpose. We're removing vendoring for now, until we understand it better. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
842515c2f1
commit
74a21f24e1
4064 changed files with 1 additions and 442576 deletions
12
Cargo.toml
12
Cargo.toml
|
|
@ -8,15 +8,3 @@ edition = "2018"
|
|||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue