mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
0f924dd693
Add a crate containing an API for controlling the balloon. This is done by reusing the API between the control socket and the balloon device. BUG=b:213962590 TEST=compiles Change-Id: I5d89d5ebee55162d28ba45ca2c49b7083561b916 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3394440 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: David Stevens <stevensd@chromium.org>
24 lines
649 B
TOML
24 lines
649 B
TOML
[package]
|
|
name = "vm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
gdb = ["gdbstub_arch"]
|
|
|
|
[dependencies]
|
|
balloon_control = { path = "../common/balloon_control" }
|
|
base = { path = "../common/base" }
|
|
data_model = { path = "../common/data_model" }
|
|
gdbstub_arch = { version = "0.1.0", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
libc = "*"
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
rutabaga_gfx = { path = "../rutabaga_gfx"}
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "*"
|
|
vm_memory = { path = "../vm_memory" }
|