Rocket/core/lib/fuzz
Konrad Borowski 4d258739f5 Migrate Rocket to Rust 2021 edition. 2022-04-19 18:35:38 -07:00
..
corpus/uri-parsing Fuzz URI parsing and display. 2021-06-06 21:52:44 -07:00
targets Fuzz URI parsing and display. 2021-06-06 21:52:44 -07:00
.gitignore Fuzz URI parsing and display. 2021-06-06 21:52:44 -07:00
Cargo.toml Migrate Rocket to Rust 2021 edition. 2022-04-19 18:35:38 -07:00
README.md Fuzz URI parsing and display. 2021-06-06 21:52:44 -07:00

README.md

Fuzzing

Install cargo-fuzz:

cargo install -f cargo-fuzz

Run any available target where $target is the name of the target and $n is the number of CPUs to use for fuzzing:

cargo fuzz list # get list of targets
cargo fuzz run $target -j $n