mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
c69ee11e1d
Separated out of CL:1513058 to make it possible to land parts individually while the affected crate has no other significant CLs pending. This avoids repeatedly introducing non-textual conflicts with new code that adds `use` statements. TEST=cargo check TEST=cargo check --all-features TEST=cargo check --target aarch64-unknown-linux-gnu Change-Id: I355014ebd08bc2a655e1a1bbff56ecc90aa99ece Reviewed-on: https://chromium-review.googlesource.com/1519695 Commit-Ready: David Tolnay <dtolnay@chromium.org> Tested-by: David Tolnay <dtolnay@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: David Tolnay <dtolnay@chromium.org>
28 lines
541 B
TOML
28 lines
541 B
TOML
[package]
|
|
name = "crosvm-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
devices = { path = "../devices" }
|
|
libc = "*"
|
|
kernel_loader = { path = "../kernel_loader" }
|
|
qcow = { path = "../qcow" }
|
|
sys_util = { path = "../sys_util" }
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "crosvm_block_fuzzer"
|
|
path = "block_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_qcow_fuzzer"
|
|
path = "qcow_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_zimage_fuzzer"
|
|
path = "zimage_fuzzer.rs"
|