1[package] 2name = "aarch64" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[features] 8gdb = ["gdbstub", "gdbstub_arch", "arch/gdb"] 9swap = ["swap/enable"] 10 11[dependencies] 12anyhow = "1" 13arch = { path = "../arch" } 14cros_fdt = { path = "../cros_fdt" } 15devices = { path = "../devices" } 16gdbstub = { version = "0.7.0", optional = true } 17gdbstub_arch = { version = "0.3.0", optional = true } 18hypervisor = { path = "../hypervisor" } 19jail = { path = "../jail" } 20kernel_cmdline = { path = "../kernel_cmdline" } 21kernel_loader = { path = "../kernel_loader" } 22libc = "0.2" 23rand = "0.8" 24remain = "0.2" 25resources = { path = "../resources" } 26swap = { path = "../swap" } 27sync = { path = "../common/sync" } 28base = { path = "../base" } 29thiserror = "1" 30vm_control = { path = "../vm_control" } 31vm_memory = { path = "../vm_memory" } 32 33[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] 34minijail = "*" 35