You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
515 B
21 lines
515 B
[package]
|
|
name = "vm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
gdb = ["gdbstub"]
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
data_model = { path = "../data_model" }
|
|
gdbstub = { version = "0.4.0", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
libc = "*"
|
|
resources = { path = "../resources" }
|
|
rutabaga_gfx = { path = "../rutabaga_gfx"}
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
sync = { path = "../sync" }
|
|
vm_memory = { path = "../vm_memory" }
|