xref: /cloud-hypervisor/arch/Cargo.toml (revision 5a70d7ec69836ad66cdd1e4ea59414dcdaaeec8c)
1[package]
2authors = ["The Chromium OS Authors"]
3edition = "2021"
4name = "arch"
5version = "0.1.0"
6
7[features]
8default = []
9kvm = []
10sev_snp = []
11tdx = []
12
13[dependencies]
14anyhow = "1.0.87"
15byteorder = "1.5.0"
16hypervisor = { path = "../hypervisor" }
17libc = "0.2.158"
18linux-loader = { workspace = true, features = ["bzimage", "elf", "pe"] }
19log = "0.4.22"
20serde = { version = "1.0.208", features = ["derive", "rc"] }
21thiserror = "1.0.62"
22uuid = "1.8.0"
23vm-memory = { workspace = true, features = ["backend-bitmap", "backend-mmap"] }
24vm-migration = { path = "../vm-migration" }
25vmm-sys-util = { workspace = true, features = ["with-serde"] }
26
27[target.'cfg(target_arch = "aarch64")'.dependencies]
28fdt_parser = { version = "0.1.5", package = "fdt" }
29vm-fdt = { workspace = true }
30