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 = "*" 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 = "*" 26memoffset = "0.6" 27once_cell = "1.7.2" 28rand = "0.8" 29remain = "*" 30resources = { path = "../resources" } 31sync = { path = "../common/sync" } 32thiserror = "*" 33uuid = { version = "1", features = ["v4"] } 34base = { path = "../base" } 35swap = { path = "../swap" } 36vm_control = { path = "../vm_control" } 37vm_memory = { path = "../vm_memory" } 38zerocopy = { version = "0.7", features = ["derive"] } 39 40[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] 41minijail = "*" 42