diff options
author | iximeow <me@iximeow.net> | 2024-06-23 23:13:03 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-23 23:25:46 -0700 |
commit | 238d65c98b2983f87c89f78a793ba7c56dcf7b01 (patch) | |
tree | ca2d08b8c60c6fbe635ca886f85e77ead5571078 /fuzz/Cargo.toml | |
parent | 577b8e89849db33427e4be961997ad7af5e048f1 (diff) |
update yaxpeax-arch to 0.3.1, fix fuzz target warnings
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 60690f6..2203dc3 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,6 +10,8 @@ cargo-fuzz = true [dependencies.yaxpeax-x86] path = ".." +[dependencies.yaxpeax-arch] +version = "0.3.1" [dependencies.libfuzzer-sys] git = "https://github.com/rust-fuzz/libfuzzer-sys.git" @@ -28,6 +30,12 @@ test = false doc = false [[bin]] +name = "displaysink_used_correctly" +path = "fuzz_targets/displaysink_used_correctly.rs" +test = false +doc = false + +[[bin]] name = "display_c_does_not_panic" path = "fuzz_targets/display_c_does_not_panic.rs" test = false |