aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Cargo.toml
blob: 53bcb814cbc28d4148026d1f891e4da90290c958 (plain)
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

[package]
name = "yaxpeax-x86-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false

[package.metadata]
cargo-fuzz = true

[dependencies.yaxpeax-x86]
path = ".."
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"

# Prevent this from interfering with workspaces
[workspace]
members = ["."]

[[bin]]
name = "decode_does_not_panic"
path = "fuzz_targets/decode_does_not_panic.rs"

[[bin]]
name = "display_does_not_panic"
path = "fuzz_targets/display_does_not_panic.rs"
test = false
doc = false

[[bin]]
name = "display_c_does_not_panic"
path = "fuzz_targets/display_c_does_not_panic.rs"
test = false
doc = false