1[package] 2name = "x86_64" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[features] 8gdb = ["gdbstub_arch", "arch/gdb"] 9seccomp_trace = [] 10swap = ["swap/enable"] 11 12[dependencies] 13acpi_tables = {path = "../acpi_tables" } 14arch = { path = "../arch" } 15anyhow = "1" 16cfg-if = "1.0.0" 17chrono = { version = "0.4.34", default-features = false } 18cros_fdt = { path = "../cros_fdt" } 19devices = { path = "../devices" } 20gdbstub_arch = { version = "0.3.0", optional = true } 21hypervisor = { path = "../hypervisor" } 22jail = { path = "../jail" } 23kernel_cmdline = { path = "../kernel_cmdline" } 24kernel_loader = { path = "../kernel_loader" } 25libc = "0.2" 26once_cell = "1.7.2" 27rand = "0.8" 28remain = "0.2" 29resources = { path = "../resources" } 30sync = { path = "../common/sync" } 31thiserror = "1" 32uuid = { version = "1", features = ["v4"] } 33base = { path = "../base" } 34swap = { path = "../swap" } 35vm_control = { path = "../vm_control" } 36vm_memory = { path = "../vm_memory" } 37zerocopy = { version = "0.8.13", features = ["derive"] } 38 39[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] 40minijail = "*" 41