2020-07-16 14:44:36 +00:00
|
|
|
[package]
|
|
|
|
name = "cloud-hypervisor-fuzz"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Automatically generated"]
|
|
|
|
publish = false
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-22 09:51:27 +00:00
|
|
|
block_util = { path = "../block_util" }
|
2021-03-31 07:29:37 +00:00
|
|
|
libc = "0.2.92"
|
2021-02-26 11:35:00 +00:00
|
|
|
libfuzzer-sys = "0.4"
|
2020-07-16 14:44:36 +00:00
|
|
|
qcow = { path = "../qcow" }
|
2020-09-30 03:53:01 +00:00
|
|
|
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.22.0" }
|
2020-07-20 15:41:40 +00:00
|
|
|
virtio-devices = { path = "../virtio-devices" }
|
2021-02-25 16:53:46 +00:00
|
|
|
vmm-sys-util = "0.8.0"
|
2020-07-20 15:41:40 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2021-02-10 11:40:52 +00:00
|
|
|
vm-memory = "0.5.0"
|
2020-07-16 14:44:36 +00:00
|
|
|
|
2021-02-25 16:53:46 +00:00
|
|
|
[patch.crates-io]
|
2021-03-08 14:17:38 +00:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"] }
|
2021-02-25 16:53:46 +00:00
|
|
|
|
2020-07-16 14:44:36 +00:00
|
|
|
[dependencies.cloud-hypervisor]
|
|
|
|
path = ".."
|
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "qcow"
|
|
|
|
path = "fuzz_targets/qcow.rs"
|
|
|
|
test = false
|
|
|
|
doc = false
|
2020-07-20 15:41:40 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "block"
|
|
|
|
path = "fuzz_targets/block.rs"
|
|
|
|
test = false
|
|
|
|
doc = false
|