chrono/fuzz/README.md
DavidKorczynski 370a20cb71
Added a fuzzer as integration to OSS-Fuzz. (#463)
* Added a fuzzer.

* Added a README for the fuzzer set up.
2020-07-27 10:07:10 -04:00

13 lines
292 B
Markdown

# Fuzzing Chrono
To fuzz Chrono we rely on the [Cargo-fuzz](https://rust-fuzz.github.io/) project.
To install cargo-fuzz:
```
cargo install cargo-fuzz
```
To run the Chrono fuzzer, navigate to the top directory of chrono and issue the following command:
```
cargo-fuzz run fuzz_reader
```