aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Cargo.toml
blob: a1f871e40943d705012deae1c10fad0a35ca5454 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

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

[package.metadata]
cargo-fuzz = true

[dependencies.yaxpeax-x86]
path = ".."
[dependencies.yaxpeax-arch]
version = "0.3.1"
[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 = "displaysink_used_correctly"
path = "fuzz_targets/displaysink_used_correctly.rs"
test = false
doc = false

[[bin]]
name = "instruction_text_buffer_size_ok"
path = "fuzz_targets/instruction_text_buffer_size_ok.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

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

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