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]
|
2019-08-02 11:02:17 +00:00
|
|
|
byteorder = "1.3.2"
|
2019-11-29 15:36:33 +00:00
|
|
|
kvm-bindings = "0.2.0"
|
|
|
|
kvm-ioctls = "0.4.0"
|
2019-08-02 11:02:17 +00:00
|
|
|
libc = "0.2.60"
|
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" }
|
|
|
|
|
|
|
|
[dependencies.vm-memory]
|
|
|
|
git = "https://github.com/rust-vmm/vm-memory"
|
|
|
|
features = ["backend-mmap"]
|
|
|
|
|
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]
|
2019-08-02 11:02:17 +00:00
|
|
|
rand = "0.7.0"
|