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