mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
48ff4165d2
This may help reduce cases of conflicts between independent CLs each appending a dependency at the bottom of the list, of which I hit two today rebasing some of my open CLs. TEST=cargo check --all-features Change-Id: Ief10bb004cc7b44b107dc3841ce36c6b23632aed Reviewed-on: https://chromium-review.googlesource.com/1557172 Commit-Ready: David Tolnay <dtolnay@chromium.org> Tested-by: David Tolnay <dtolnay@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@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" }
|
|
kernel_loader = { path = "../kernel_loader" }
|
|
libc = "*"
|
|
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"
|