1[package] 2name = "arch" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2018" 6 7[features] 8default = [] 9acpi = ["acpi_tables"] 10tdx = [] 11 12[dependencies] 13acpi_tables = { path = "../acpi_tables", optional = true } 14anyhow = "1.0.42" 15byteorder = "1.4.3" 16hypervisor = { path = "../hypervisor" } 17libc = "0.2.98" 18linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] } 19log = "0.4.14" 20serde = { version = "1.0.127", features = ["rc"] } 21thiserror = "1.0.26" 22versionize = "0.1.6" 23versionize_derive = "0.1.4" 24vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-bitmap"] } 25vm-migration = { path = "../vm-migration" } 26vmm-sys-util = { version = "0.8.0", features = ["with-serde"] } 27 28[target.'cfg(target_arch = "aarch64")'.dependencies] 29fdt_parser = { version = "0.1.3", package = 'fdt'} 30vm-fdt = { git = "https://github.com/rust-vmm/vm-fdt", branch = "master" } 31