Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
google
GitHub Repository: google/crosvm
Path: blob/main/crosvm_control/Cargo.toml
5392 views
1
[package]
2
name = "crosvm_control"
3
version = "0.1.0"
4
authors = ["The ChromiumOS Authors"]
5
edition = "2021"
6
7
[features]
8
audio = ["vm_control/audio"]
9
gpu = ["vm_control/gpu"]
10
pci-hotplug = ["vm_control/pci-hotplug"]
11
registered_events = ["vm_control/registered_events"]
12
13
[lib]
14
crate-type = ["cdylib", "staticlib"]
15
16
[dependencies]
17
balloon_control = { workspace = true }
18
base = { workspace = true }
19
libc = { workspace = true }
20
swap = { path = "../swap", default-features = false }
21
vm_control = { workspace = true, features = [ "balloon" ] }
22
zerocopy = { version = "0.8.13", features = ["derive"] }
23
24
[build-dependencies]
25
anyhow = { workspace = true }
26
cbindgen = "0.24.3"
27
cc = "1"
28
tempfile = "3"
29
30