xref: /cloud-hypervisor/arch/Cargo.toml (revision eeae63b4595fbf0cc69f62b6e9d9a79c543c4ac7)
1[package]
2authors = ["The Chromium OS Authors"]
3edition = "2021"
4name = "arch"
5version = "0.1.0"
6
7[features]
8default = []
9kvm = ["hypervisor/kvm"]
10sev_snp = []
11tdx = []
12
13[dependencies]
14anyhow = "1.0.94"
15byteorder = "1.5.0"
16hypervisor = { path = "../hypervisor" }
17libc = "0.2.167"
18linux-loader = { workspace = true, features = ["bzimage", "elf", "pe"] }
19log = "0.4.22"
20serde = { version = "1.0.208", features = ["derive", "rc"] }
21thiserror = "2.0.6"
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(any(target_arch = "aarch64", target_arch = "riscv64"))'.dependencies]
28fdt_parser = { version = "0.1.5", package = "fdt" }
29vm-fdt = { workspace = true }
30