1[package] 2name = "crosvm-fuzz" 3version = "0.0.1" 4authors = ["The Chromium OS Authors"] 5edition = "2021" 6 7[dependencies] 8cros_fuzz = "*" 9data_model = { path = "../common/data_model" } 10devices = { path = "../devices" } 11disk = { path = "../disk" } 12fuse = { path = "../fuse" } 13hypervisor = { path = "../hypervisor" } 14kernel_loader = { path = "../kernel_loader" } 15libc = "*" 16rand = "0.6" 17base = { path = "../base" } 18tempfile = "3" 19usb_util = { path = "../usb_util" } 20vm_memory = { path = "../vm_memory" } 21 22[[bin]] 23name = "crosvm_block_fuzzer" 24path = "block_fuzzer.rs" 25 26[[bin]] 27name = "crosvm_fs_server_fuzzer" 28path = "fs_server_fuzzer.rs" 29 30[[bin]] 31name = "crosvm_qcow_fuzzer" 32path = "qcow_fuzzer.rs" 33 34[[bin]] 35name = "crosvm_usb_descriptor_fuzzer" 36path = "usb_descriptor_fuzzer.rs" 37 38[[bin]] 39name = "crosvm_virtqueue_fuzzer" 40path = "virtqueue_fuzzer.rs" 41 42[[bin]] 43name = "crosvm_zimage_fuzzer" 44path = "zimage_fuzzer.rs" 45 46