mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
4a11ffc891
Bump the versions of these crates as we're about to require support for unavailable register values and AArch64. Do it in a separate commit to ease future bisects. BUG=b:222222882 BUG=chromium:1141812 TEST=tools/dev_container ./tools/run_tests Change-Id: I0bfa3559d172faf2df6bcffdc77714830f442051 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3785466 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Auto-Submit: Pierre-Clément Tosi <ptosi@google.com> Tested-by: Pierre-Clément Tosi <ptosi@google.com> Commit-Queue: Pierre-Clément Tosi <ptosi@google.com> Reviewed-by: Takaya Saeki <takayas@chromium.org>
28 lines
741 B
TOML
28 lines
741 B
TOML
[package]
|
|
name = "vm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
balloon = []
|
|
gdb = ["gdbstub", "gdbstub_arch"]
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
balloon_control = { path = "../common/balloon_control" }
|
|
base = { path = "../base" }
|
|
cfg-if = "*"
|
|
data_model = { path = "../common/data_model" }
|
|
gdbstub = { version = "0.6.3", optional = true }
|
|
gdbstub_arch = { version = "0.2.4", 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" }
|