From a25ad494ccd3a5640b5d4f73fd74774c9c471a10 Mon Sep 17 00:00:00 2001 From: Arthur Carcano Date: Thu, 30 Apr 2026 13:27:01 +0200 Subject: [PATCH] Add fuzzing README --- fuzz/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 fuzz/README.md diff --git a/fuzz/README.md b/fuzz/README.md new file mode 100644 index 00000000..c098e5a8 --- /dev/null +++ b/fuzz/README.md @@ -0,0 +1,11 @@ +# Fuzzing + +## Setup + +Install cargo fuzz: `cargo install cargo-fuzz` + +## Launch + +Run `cargo fuzz run ` where `` is the name (without extension) of one of the `.rs` files in the `fuzz_targets` directory. + +If you launch the command outside of the fuzz directory, you need to force the nightly toolchain with `cargo +nightly`. \ No newline at end of file