Cargo.toml 572 B

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