From 82c5c350e569d77e2b05321cda553f388d948aa4 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 18 Dec 2024 12:03:46 +0100 Subject: Rename xixanta's fuzz targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They were named with increasing numbers due to the fact that that's the default behaviour from cargo fuzz's command. So, just rename them to proper human-readable names. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/fuzz/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/xixanta/fuzz/Cargo.toml') diff --git a/lib/xixanta/fuzz/Cargo.toml b/lib/xixanta/fuzz/Cargo.toml index 0c0376d..49764ed 100644 --- a/lib/xixanta/fuzz/Cargo.toml +++ b/lib/xixanta/fuzz/Cargo.toml @@ -17,15 +17,15 @@ libfuzzer-sys = "0.4" path = ".." [[bin]] -name = "fuzz_target_1" -path = "fuzz_targets/fuzz_target_1.rs" +name = "fuzz_target_parser" +path = "fuzz_targets/fuzz_target_parser.rs" test = false doc = false bench = false [[bin]] -name = "fuzz_target_2" -path = "fuzz_targets/fuzz_target_2.rs" +name = "fuzz_target_assembler" +path = "fuzz_targets/fuzz_target_assembler.rs" test = false doc = false bench = false -- cgit v1.2.3