mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
ba06509a5c
Import balloon_control items directly from that crate rather than via re-exports from vm_control. This fixes the fuzzer build, which depended on an implicitly imported type via one of the conditional wildcard imports. BUG=chromium:69590 TEST=(cd fuzz; cargo build) Change-Id: I97d5df66741cfb64f600bebd503b73d779888440 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5630345 Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
25 lines
572 B
TOML
25 lines
572 B
TOML
[package]
|
|
name = "crosvm_control"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
pci-hotplug = ["vm_control/pci-hotplug"]
|
|
registered_events = ["vm_control/registered_events"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
balloon_control = { path = "../common/balloon_control" }
|
|
base = { path = "../base" }
|
|
libc = "0.2.65"
|
|
swap = { path = "../swap", default-features = false }
|
|
vm_control = { path = "../vm_control", features = [ "balloon" ] }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1"
|
|
cbindgen = "0.24.3"
|
|
cc = "1"
|
|
tempfile = "3"
|