diff options
author | iximeow <me@iximeow.net> | 2023-12-23 15:41:09 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-12-23 15:41:18 -0800 |
commit | 6668e8f87a3d2cf814c1ddd77a0eb6fec668c3eb (patch) | |
tree | 1f3e0c132196e6ab04a05c19ccc2742f902b14d4 /fuzz/Cargo.toml | |
parent | 92260064e2073a6b3e18c0d2c042002740711c7b (diff) |
more fuzz targets
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index cf84c01..29a2307 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -18,13 +18,13 @@ yaxpeax-arch = "0.2.7" members = ["."] [[bin]] -name = "fuzz_target_1" -path = "fuzz_targets/fuzz_target_1.rs" +name = "no-panic" +path = "fuzz_targets/no-panic.rs" test = false doc = false [[bin]] -name = "no-panic" -path = "fuzz_targets/no-panic.rs" +name = "fresh-decode" +path = "fuzz_targets/fresh-decode.rs" test = false doc = false |