diff options
author | iximeow <me@iximeow.net> | 2024-06-23 17:15:39 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-23 17:15:39 -0700 |
commit | f3f9141def4a6281452b087a6b57a2c2c026ffb7 (patch) | |
tree | 92e19ec199d2557860ee6153cc4f92b89ec47cd1 /fuzz/Cargo.toml | |
parent | 9402dc008deaf993a3ac969f56af772cc545b8e8 (diff) |
add fuzz target for larger write helpers
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..67ffa43 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "yaxpeax-arch-fuzz" +version = "0.0.0" +authors = ["Automatically generated"] +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.yaxpeax-arch] +path = ".." + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "write_helpers_are_correct" +path = "fuzz_targets/write_helpers_are_correct.rs" +test = false +doc = false |