mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 13:45:20 +00:00
95229b24ab
- Bump kvm-bindings from 0.9.1 to 0.10.0 - Bump kvm-ioctls from 0.18.0 to 0.19.0 - Bump vm-memory from 0.15.0 to 0.16.0 - Bump linux-loader from 0.12.0 to 0.13.0 - Bump virtio-bindings from 0.2.1 to 0.2.4 - Bump virtio-queue from 0.13.0 to 0.14.0 - Pin mshv-bindings to 0.3.1 - Pin mshv-ioctls to 0.3.1 - Pin vhost to rev "d983ae0" - Pin vhost-user-backend to rev "d983ae0" Since vhost 0.12.0 and vhost-user-backend 0.16.0 are going to be yanked, temporarily pin these two to "d983ae0", which are expected to be replaced by 0.13.0 vhost and 0.17.0 vhost-user-backend after released. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
134 lines
2.2 KiB
TOML
134 lines
2.2 KiB
TOML
[package]
|
|
authors = ["Automatically generated"]
|
|
edition = "2021"
|
|
name = "cloud-hypervisor-fuzz"
|
|
publish = false
|
|
version = "0.0.0"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[features]
|
|
igvm = []
|
|
pvmemcontrol = []
|
|
|
|
[dependencies]
|
|
block = { path = "../block" }
|
|
devices = { path = "../devices" }
|
|
epoll = "4.3.3"
|
|
libc = "0.2.155"
|
|
libfuzzer-sys = "0.4.7"
|
|
linux-loader = { version = "0.13.0", features = ["bzimage", "elf", "pe"] }
|
|
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" }
|
|
net_util = { path = "../net_util" }
|
|
once_cell = "1.19.0"
|
|
seccompiler = "0.4.0"
|
|
virtio-devices = { path = "../virtio-devices" }
|
|
virtio-queue = "0.14.0"
|
|
vm-device = { path = "../vm-device" }
|
|
vm-memory = "0.16.0"
|
|
vm-migration = { path = "../vm-migration" }
|
|
vm-virtio = { path = "../vm-virtio" }
|
|
vmm = { path = "../vmm", features = ["guest_debug"] }
|
|
vmm-sys-util = "0.12.1"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "balloon"
|
|
path = "fuzz_targets/balloon.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "block"
|
|
path = "fuzz_targets/block.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "cmos"
|
|
path = "fuzz_targets/cmos.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "console"
|
|
path = "fuzz_targets/console.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "http_api"
|
|
path = "fuzz_targets/http_api.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "iommu"
|
|
path = "fuzz_targets/iommu.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "linux_loader"
|
|
path = "fuzz_targets/linux_loader.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "linux_loader_cmdline"
|
|
path = "fuzz_targets/linux_loader_cmdline.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "mem"
|
|
path = "fuzz_targets/mem.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "net"
|
|
path = "fuzz_targets/net.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "pmem"
|
|
path = "fuzz_targets/pmem.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "qcow"
|
|
path = "fuzz_targets/qcow.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "rng"
|
|
path = "fuzz_targets/rng.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "serial"
|
|
path = "fuzz_targets/serial.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "vhdx"
|
|
path = "fuzz_targets/vhdx.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "watchdog"
|
|
path = "fuzz_targets/watchdog.rs"
|
|
test = false
|