mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
fbb8137c0a
Add the minimal allow(dead_code) and feature declarations to allow the clippy checks to pass for Windows with Rust 1.81. BUG=b:365852007 TEST=tools/presubmit clippy_mingw64 Change-Id: I9ab776b07d8e9e14fe380d9b5ef1fa332788ff63 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/6013080 Reviewed-by: Kaiyi Li <kaiyili@google.com> Reviewed-by: Noah Gold <nkgold@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "hypervisor"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
enable_haxm_tests = []
|
|
haxm = []
|
|
whpx = []
|
|
geniezone = []
|
|
gvm = []
|
|
gunyah = []
|
|
noncoherent-dma = []
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bit_field = { path = "../bit_field" }
|
|
bitflags = "2.2.1"
|
|
cros_fdt = { path = "../cros_fdt" }
|
|
data_model = { path = "../common/data_model" }
|
|
downcast-rs = "1.2.0"
|
|
enumn = "0.1.0"
|
|
fnv = "1"
|
|
libc = "0.2"
|
|
once_cell = "1.7"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = { version = "1" }
|
|
sync = { path = "../common/sync" }
|
|
base = { path = "../base" }
|
|
vm_memory = { path = "../vm_memory" }
|
|
|
|
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
|
|
kvm_sys = { path = "../kvm_sys" }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
|
|
hypervisor_test_macro = { path = "hypervisor_test_macro" }
|
|
zerocopy = { version = "0.7", features = ["derive"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
thiserror = "1"
|
|
winapi = "0.3"
|
|
win_util = { path = "../win_util" }
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
version = "0.39.0"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Memory",
|
|
]
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
tempfile = "3"
|