-
Notifications
You must be signed in to change notification settings - Fork 89
/
Cargo.toml
41 lines (34 loc) · 1 KB
/
Cargo.toml
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
[package]
name = "rust-vmm-fuzz"
version = "0.1.0"
authors = ["Delia-Maria Pavel <[email protected]>", "rust-vmm AWS maintainers [email protected]"]
description = "virtio fuzzing"
edition = "2018"
# Prevent this from interfering with workspaces
[workspace]
members = []
[package.metadata]
cargo-fuzz = true
[dependencies]
bincode = "1.3.3"
libfuzzer-sys = "0.4"
serde = "1.0.63"
memfd = "0.6.3"
virtio-queue = { path = "../virtio-queue", features = ["test-utils"] }
virtio-vsock = { path = "../virtio-vsock" }
virtio-queue-ser = { path = "../virtio-queue-ser" }
vm-memory = { version = "0.16.0", features = ["backend-mmap", "backend-atomic"] }
common = { path = "common" }
virtio-blk = { path = "../virtio-blk", features = ["backend-stdio"] }
[[bin]]
name = "virtio_queue"
path = "fuzz_targets/virtio_queue.rs"
[[bin]]
name = "vsock"
path = "fuzz_targets/vsock.rs"
[[bin]]
name = "virtio_queue_ser"
path = "fuzz_targets/virtio_queue_ser.rs"
[[bin]]
name = "blk"
path = "fuzz_targets/blk.rs"