summary refs log tree commit diff
path: root/fuzz/Cargo.toml
blob: 3dd3d4140f5562a189aa130b09524248459061f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "crosvm-fuzz"
version = "0.0.1"
authors = ["The Chromium OS Authors"]

[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_qcow_fuzzer"
path = "qcow_fuzzer.rs"

[[bin]]
name = "crosvm_zimage_fuzzer"
path = "zimage_fuzzer.rs"