roc/crates/compiler/parse/fuzz
dependabot[bot] f0c83f730b
Bump im from 14.3.0 to 15.1.0 in /crates/compiler/parse/fuzz
Bumps [im](https://github.com/bodil/im-rs) from 14.3.0 to 15.1.0.
- [Release notes](https://github.com/bodil/im-rs/releases)
- [Changelog](https://github.com/bodil/im-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bodil/im-rs/compare/v14.3.0...v15.1.0)

---
updated-dependencies:
- dependency-name: im
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-12 21:09:40 +00:00
..
fuzz_targets moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
.gitignore moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
Cargo.lock Bump im from 14.3.0 to 15.1.0 in /crates/compiler/parse/fuzz 2022-08-12 21:09:40 +00:00
Cargo.toml moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
dict.txt moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
README.md moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00

To setup fuzzing you will need to install cargo-fuzz and run with rust nightly:

$ cargo install cargo-fuzz
$ cargo +nightly fuzz run -j<cores> <target> -- -dict=dict.txt

The different targets can be found by running cargo fuzz list.

When a bug is found, it will be reported with commands to run it again and look for a minimized version. If you are going to file a bug, please minimize the input before filing the bug.