mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
c13c0c210b
Developers may need to manually clean up the common/enumn directory - it will be left behind if there are build artifacts (Cargo.lock, target directory, etc.): rm -rf common/enumn BUG=b:205344148 TEST=cargo build TEST=tools/presubmit TEST=emerge-hatch crosvm # with https://crrev.com/c/3265967 Change-Id: I1af3bdd22f40e87895a78a5cbc8033476058c927 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3278774 Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
18 lines
472 B
TOML
18 lines
472 B
TOML
[package]
|
|
name = "hypervisor"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bit_field = { path = "../bit_field" }
|
|
data_model = { path = "../common/data_model" }
|
|
downcast-rs = "1.2.0"
|
|
enumn = "0.1.0"
|
|
kvm = { path = "../kvm" }
|
|
kvm_sys = { path = "../kvm_sys" }
|
|
libc = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
sync = { path = "../common/sync" }
|
|
base = { path = "../common/base" }
|
|
vm_memory = { path = "../vm_memory" }
|