diff options
Diffstat (limited to 'askama_parser/fuzz/README.md')
-rw-r--r-- | askama_parser/fuzz/README.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/askama_parser/fuzz/README.md b/askama_parser/fuzz/README.md new file mode 100644 index 0000000..6f6c2a1 --- /dev/null +++ b/askama_parser/fuzz/README.md @@ -0,0 +1,14 @@ +# Fuzzing + +Install `cargo-fuzz`: + +```sh +cargo install -f cargo-fuzz +``` + +Run any available target where `$target` is the name of the target. + +```sh +cargo fuzz list # get list of targets +cargo +nightly fuzz run $target +```
\ No newline at end of file |