Add fuzzing README

This commit is contained in:
Arthur Carcano
2026-04-30 13:27:01 +02:00
committed by Alex
parent 7d97b2b96e
commit a25ad494cc
+11
View File
@@ -0,0 +1,11 @@
# Fuzzing
## Setup
Install cargo fuzz: `cargo install cargo-fuzz`
## Launch
Run `cargo fuzz run <fuzz_target>` where `<fuzz_target>` 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`.