summary refs log tree commit diff
path: root/fuzz/Cargo.toml
blob: 93c2e034e20db43a73b7c374ff590ebe31e8d4f0 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "crosvm-fuzz"
version = "0.0.1"
authors = ["The Chromium OS Authors"]
edition = "2018"

[dependencies]
cros_fuzz = "*"
data_model = { path = "../data_model" }
devices = { path = "../devices" }
disk = { path = "../disk" }
kernel_loader = { path = "../kernel_loader" }
libc = "*"
rand = "0.6"
sys_util = { path = "../sys_util" }
usb_util = { path = "../usb_util" }

# Prevent this from interfering with workspaces
[workspace]
members = ["."]

[[bin]]
name = "crosvm_block_fuzzer"
path = "block_fuzzer.rs"

[[bin]]
name = "crosvm_fs_server_fuzzer"
path = "fs_server_fuzzer.rs"

[[bin]]
name = "crosvm_qcow_fuzzer"
path = "qcow_fuzzer.rs"

[[bin]]
name = "crosvm_usb_descriptor_fuzzer"
path = "usb_descriptor_fuzzer.rs"

[[bin]]
name = "crosvm_virtqueue_fuzzer"
path = "virtqueue_fuzzer.rs"

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

[patch.crates-io]
sys_util = { path = "../sys_util" }