2019-02-25 21:53:01 +00:00
|
|
|
[package]
|
|
|
|
name = "arch"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
|
2019-09-03 13:54:06 +00:00
|
|
|
[features]
|
2019-09-05 15:29:55 +00:00
|
|
|
default = []
|
2019-09-03 13:54:06 +00:00
|
|
|
|
2019-02-25 21:53:01 +00:00
|
|
|
[dependencies]
|
2020-02-07 13:44:37 +00:00
|
|
|
byteorder = "1.3.4"
|
2020-02-17 14:28:24 +00:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" }
|
|
|
|
kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" }
|
2020-04-13 23:33:46 +00:00
|
|
|
libc = "0.2.69"
|
2020-03-23 13:54:34 +00:00
|
|
|
vm-memory = { version = "0.2.0", features = ["backend-mmap"] }
|
2019-02-25 21:53:01 +00:00
|
|
|
|
2019-09-03 13:54:06 +00:00
|
|
|
acpi_tables = { path = "../acpi_tables", optional = true }
|
2019-02-25 21:53:01 +00:00
|
|
|
arch_gen = { path = "../arch_gen" }
|
|
|
|
|
2019-06-10 09:14:02 +00:00
|
|
|
[dependencies.linux-loader]
|
2019-06-13 10:07:32 +00:00
|
|
|
git = "https://github.com/rust-vmm/linux-loader"
|
2019-06-10 09:14:02 +00:00
|
|
|
features = ["elf", "bzimage"]
|
|
|
|
|
2019-02-25 21:53:01 +00:00
|
|
|
[dev-dependencies]
|
2020-01-10 21:54:38 +00:00
|
|
|
rand = "0.7.3"
|