mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-05 01:02:42 +00:00
16 lines
269 B
Markdown
16 lines
269 B
Markdown
# Fuzzing
|
|
|
|
Install `cargo-fuzz`:
|
|
|
|
```sh
|
|
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:
|
|
|
|
```sh
|
|
cargo fuzz list # get list of targets
|
|
cargo fuzz run $target -j $n
|
|
```
|