|
1 | 1 | [package] |
2 | 2 | name = "descriptor-fuzz" |
| 3 | +edition = "2018" |
3 | 4 | version = "0.0.1" |
4 | | -authors = ["Automatically generated"] |
| 5 | +authors = ["Generated by fuzz/generate-files.sh"] |
5 | 6 | publish = false |
6 | 7 |
|
7 | 8 | [package.metadata] |
8 | 9 | cargo-fuzz = true |
9 | 10 |
|
10 | | -[features] |
11 | | -afl_fuzz = ["afl"] |
12 | | -honggfuzz_fuzz = ["honggfuzz"] |
13 | | - |
14 | 11 | [dependencies] |
15 | | -honggfuzz = { version = "0.5.55", default-features = false, optional = true } |
16 | | -afl = { version = "0.8", optional = true } |
17 | | -regex = { version = "1.4"} |
18 | | -miniscript = { path = "..", features = ["compiler"] } |
| 12 | +honggfuzz = { version = "0.5.55", default-features = false } |
| 13 | +miniscript = { path = "..", features = [ "compiler" ] } |
| 14 | + |
| 15 | +regex = "1.4" |
19 | 16 |
|
20 | 17 | [[bin]] |
21 | | -name = "roundtrip_descriptor" |
22 | | -path = "fuzz_targets/roundtrip_descriptor.rs" |
| 18 | +name = "roundtrip_miniscript_str" |
| 19 | +path = "fuzz_targets/roundtrip_miniscript_str.rs" |
23 | 20 |
|
24 | 21 | [[bin]] |
25 | 22 | name = "roundtrip_miniscript_script" |
26 | 23 | path = "fuzz_targets/roundtrip_miniscript_script.rs" |
27 | 24 |
|
28 | 25 | [[bin]] |
29 | | -name = "roundtrip_miniscript_str" |
30 | | -path = "fuzz_targets/roundtrip_miniscript_str.rs" |
31 | | - |
32 | | -[[bin]] |
33 | | -name = "roundtrip_concrete" |
34 | | -path = "fuzz_targets/roundtrip_concrete.rs" |
| 26 | +name = "parse_descriptor" |
| 27 | +path = "fuzz_targets/parse_descriptor.rs" |
35 | 28 |
|
36 | 29 | [[bin]] |
37 | 30 | name = "roundtrip_semantic" |
38 | 31 | path = "fuzz_targets/roundtrip_semantic.rs" |
39 | 32 |
|
40 | 33 | [[bin]] |
41 | | -name = "compile_descriptor" |
42 | | -path = "fuzz_targets/compile_descriptor.rs" |
| 34 | +name = "parse_descriptor_secret" |
| 35 | +path = "fuzz_targets/parse_descriptor_secret.rs" |
43 | 36 |
|
44 | 37 | [[bin]] |
45 | | -name = "parse_descriptor" |
46 | | -path = "fuzz_targets/parse_descriptor.rs" |
| 38 | +name = "roundtrip_descriptor" |
| 39 | +path = "fuzz_targets/roundtrip_descriptor.rs" |
47 | 40 |
|
48 | 41 | [[bin]] |
49 | | -name = "parse_descriptor_secret" |
50 | | -path = "fuzz_targets/parse_descriptor_secret.rs" |
| 42 | +name = "roundtrip_concrete" |
| 43 | +path = "fuzz_targets/roundtrip_concrete.rs" |
| 44 | + |
| 45 | +[[bin]] |
| 46 | +name = "compile_descriptor" |
| 47 | +path = "fuzz_targets/compile_descriptor.rs" |
0 commit comments