diff options
author | iximeow <me@iximeow.net> | 2021-12-19 11:32:43 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-12-19 11:32:43 -0800 |
commit | 26e019cc3788b6bac73969dc3d1753e883961339 (patch) | |
tree | 75ba2bc194df377412d31c7dbbe636ca8dee87fd /fuzz/Cargo.toml | |
parent | e7dec7baa9c6649d71e1b349d93dce6b0cd588bf (diff) |
add in-tree cargo fuzz targets for decode and display impls
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..5c49296 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,28 @@ + +[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 |