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] 15balloon_control = { path = "../common/balloon_control" } 16base = { path = "../base" } 17libc = "0.2.65" 18swap = { path = "../swap", default-features = false } 19vm_control = { path = "../vm_control", features = [ "balloon" ] } 20 21[build-dependencies] 22anyhow = "1" 23cbindgen = "0.24.3" 24cc = "1" 25tempfile = "3" 26