1[package] 2name = "cloud-hypervisor-fuzz" 3version = "0.0.0" 4authors = ["Automatically generated"] 5publish = false 6edition = "2018" 7 8[package.metadata] 9cargo-fuzz = true 10 11[dependencies] 12block_util = { path = "../block_util" } 13libc = "0.2.102" 14libfuzzer-sys = "0.4.2" 15qcow = { path = "../qcow" } 16seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} 17vhdx = { path = "../vhdx" } 18virtio-devices = { path = "../virtio-devices" } 19vmm-sys-util = "0.9.0" 20vm-virtio = { path = "../vm-virtio" } 21vm-memory = "0.6.0" 22 23[dependencies.cloud-hypervisor] 24path = ".." 25 26[patch.crates-io] 27kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0", features = ["with-serde", "fam-wrappers"] } 28versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" } 29vhost = { git = "https://github.com/rust-vmm/vhost", branch = "main", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] } 30 31# Prevent this from interfering with workspaces 32[workspace] 33members = ["."] 34 35[[bin]] 36name = "qcow" 37path = "fuzz_targets/qcow.rs" 38test = false 39doc = false 40 41[[bin]] 42name = "block" 43path = "fuzz_targets/block.rs" 44test = false 45doc = false 46 47[[bin]] 48name = "vhdx" 49path = "fuzz_targets/vhdx.rs" 50test = false 51doc = false 52