mirror of https://github.com/rwf2/Rocket.git
3a44b1b28e
Prior to this commit, several `RouteUri` fields were public, allowing those values to be changed at will. These changes were at times not reflected by the rest of the library, meaning that the values in the route URI structure for a route became incoherent with the reflected values. This commit makes all fields private, forcing all changes to go through methods that can ensure coherence. All values remain accessible via getter methods. |
||
---|---|---|
.. | ||
corpus | ||
targets | ||
.gitignore | ||
Cargo.toml | ||
README.md |
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