mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-12-28 14:40:46 +00:00
94bf1bf6b4
Break out vm_control to a crate that will be able to used by more modules. Having vm_control usable from outside crosvm makes it possible to move the devices out of crosvm in a later commit. Change-Id: I1f060700ed49b5d77519d55efa2430490d521256 Signed-off-by: Dylan Reid <dgreid@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/706558 Reviewed-by: Zach Reizner <zachr@chromium.org>
10 lines
215 B
TOML
10 lines
215 B
TOML
[package]
|
|
name = "vm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[dependencies]
|
|
data_model = { path = "../data_model" }
|
|
kvm = { path = "../kvm" }
|
|
libc = "*"
|
|
sys_util = { path = "../sys_util" }
|