topola/crates/specctra-core/fuzz
Mikolaj Wielgus 44c30caafe chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files
I ran the following command in Fish shell:

```
reuse annotate --skip-unrecognised --copyright="Topola contributors" --license="MIT" **.{rs,md,toml}
```

The choice of year 2024 in the copyright statements is intentional.
2024-12-29 22:47:00 +01:00
..
fuzz_targets chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00
.gitignore feat: add rudimentary fuzzer for specctra-core DSN parser 2024-12-06 14:38:09 +01:00
Cargo.toml chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00
README.md chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00

README.md

Fuzzer for specctra-core

This fuzzer uses cargo-fuzz. It requires nightly rust to run, and can e.g. be invoked via cargo fuzz run fuzz_target_1.

Initialize the corpus via e.g.:

mkdir -p corpus/fuzz_target_1
cp -t corpus/fuzz_target_1 $(find ../../../tests | grep \\.dsn)

before invoking the fuzzer in order to provide the fuzzing with information how input should normally look like.