1[package] 2name = "crosvm_control" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[features] 8pci-hotplug = ["vm_control/pci-hotplug"] 9registered_events = ["vm_control/registered_events"] 10 11[lib] 12crate-type = ["cdylib", "staticlib"] 13 14[dependencies] 15base = { path = "../base" } 16libc = "0.2.65" 17swap = { path = "../swap", default-features = false } 18vm_control = { path = "../vm_control", features = [ "balloon" ] } 19 20[build-dependencies] 21anyhow = "*" 22cbindgen = "0.24.3" 23cc = "*" 24tempfile = "*" 25