diff options
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..5804b25 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "yaxpeax-hexagon-fuzz" +version = "0.0.0" +authors = ["iximeow <me@iximeow.net>"] +publish = false +edition = "2021" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" +yaxpeax-hexagon = { path = ".." } +yaxpeax-arch = "0.3.1" + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "no-panic" +path = "fuzz_targets/no-panic.rs" +test = false +doc = false + +[[bin]] +name = "fresh-decode" +path = "fuzz_targets/fresh-decode.rs" +test = false +doc = false |