garage/fuzz
Arthur Carcano 3a5f060693 Add bucket_alias CRDT fuzz target (#1439)
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/1439
Reviewed-by: Alex <lx@deuxfleurs.fr>
2026-05-07 14:02:26 +00:00
..
fuzz_targets Add bucket_alias CRDT fuzz target (#1439) 2026-05-07 14:02:26 +00:00
src cargo fmt 2026-05-05 10:41:21 +02:00
.gitignore Set up fuzz infrastructure 2026-05-01 21:36:17 +00:00
Cargo.toml Add bucket_alias CRDT fuzz target (#1439) 2026-05-07 14:02:26 +00:00
README.md Add fuzzing README 2026-05-01 21:36:17 +00:00
rust-toolchain.toml Add rust toolchain toml in fuzz dir 2026-05-01 21:36:17 +00:00

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.