2021-03-18 11:41:23 +00:00
|
|
|
[package]
|
2021-12-07 19:56:03 +00:00
|
|
|
name = "crosvm_control"
|
2021-03-18 11:41:23 +00:00
|
|
|
version = "0.1.0"
|
2022-12-29 21:24:33 +00:00
|
|
|
authors = ["The ChromiumOS Authors"]
|
2022-03-08 01:16:09 +00:00
|
|
|
edition = "2021"
|
2021-03-18 11:41:23 +00:00
|
|
|
|
2023-05-10 19:10:52 +00:00
|
|
|
[features]
|
2023-12-07 04:53:03 +00:00
|
|
|
pci-hotplug = ["vm_control/pci-hotplug"]
|
2023-05-10 19:10:52 +00:00
|
|
|
registered_events = ["vm_control/registered_events"]
|
|
|
|
|
2021-03-18 11:41:23 +00:00
|
|
|
[lib]
|
2022-08-31 12:13:58 +00:00
|
|
|
crate-type = ["cdylib", "staticlib"]
|
2021-03-18 11:41:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-02 22:34:43 +00:00
|
|
|
base = { path = "../base" }
|
|
|
|
libc = "0.2.65"
|
2023-04-28 05:38:25 +00:00
|
|
|
swap = { path = "../swap", default-features = false }
|
2023-07-31 23:45:29 +00:00
|
|
|
vm_control = { path = "../vm_control", features = [ "balloon" ] }
|
2022-03-25 23:10:28 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-05-21 22:37:42 +00:00
|
|
|
anyhow = "1"
|
2023-02-28 04:49:39 +00:00
|
|
|
cbindgen = "0.24.3"
|
2024-05-21 22:37:42 +00:00
|
|
|
cc = "1"
|
|
|
|
tempfile = "3"
|