1[package] 2name = "devices" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2021" 6 7[dependencies] 8acpi_tables = { path = "../acpi_tables" } 9anyhow = "1.0.65" 10arch = { path = "../arch" } 11bitflags = "1.3.2" 12byteorder = "1.4.3" 13hypervisor = { path = "../hypervisor" } 14libc = "0.2.133" 15log = "0.4.17" 16versionize = "0.1.6" 17versionize_derive = "0.1.4" 18vm-device = { path = "../vm-device" } 19vm-memory = "0.9.0" 20vm-migration = { path = "../vm-migration" } 21vmm-sys-util = "0.10.0" 22 23[target.'cfg(target_arch = "aarch64")'.dependencies] 24arch = { path = "../arch" } 25 26[features] 27default = [] 28