xref: /cloud-hypervisor/vm-allocator/Cargo.toml (revision 1e602bd9a6911b7326e8ed6c44239a101a87f758)
1[package]
2authors = ["The Chromium OS Authors"]
3edition = "2021"
4name = "vm-allocator"
5version = "0.1.0"
6
7[features]
8default = []
9kvm = ["arch/kvm"]
10
11[dependencies]
12libc = "0.2.167"
13vm-memory = { workspace = true }
14
15[target.'cfg(any(target_arch = "aarch64", target_arch = "riscv64"))'.dependencies]
16arch = { path = "../arch" }
17