blob: d6812f611b2526358d4d425674494e537ce6aaf3 [file] [view] [edit]
# Fuzz
Fuzzing is generally run by https://github.com/google/oss-fuzz.
To run fuzzing locally:
```shell
# Make sure you have cargo-fuzz and the nightly toolchain
$ cargo install cargo-fuzz
$ rustup install nightly
# Build the fuzzer
$ cargo +nightly fuzz build -O --debug-assertions
$ target/x86_64-unknown-linux-gnu/release/fuzz_skrifa
```