mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
3cbded2c51
BUG=None TEST=cargo build --target=armv7a-cros-linux-gnueabi && cargo build --target=aarch64-cros-linux-gnu Change-Id: I954c152f3c8086e24c4809dd5aabb5043fdd63af Reviewed-on: https://chromium-review.googlesource.com/644408 Commit-Ready: Zach Reizner <zachr@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Jason Clinton <jclinton@chromium.org> Reviewed-by: Stephen Barber <smbarber@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org>
29 lines
660 B
TOML
29 lines
660 B
TOML
[package]
|
|
name = "crosvm"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = 'abort'
|
|
|
|
[dependencies]
|
|
io_jail = { path = "io_jail" }
|
|
kvm = { path = "kvm" }
|
|
sys_util = { path = "sys_util" }
|
|
kernel_loader = { path = "kernel_loader" }
|
|
libc = "0.2.21"
|
|
byteorder = "1"
|
|
syscall_defines = { path = "syscall_defines" }
|
|
net_sys = { path = "net_sys" }
|
|
net_util = { path = "net_util" }
|
|
vhost = { path = "vhost" }
|
|
virtio_sys = { path = "virtio_sys" }
|
|
data_model = { path = "data_model" }
|
|
|
|
[dependencies.clap]
|
|
version = "*"
|
|
default-features = false
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
x86_64 = { path = "x86_64" }
|