README.md
1# Fuzzing Infrastructure for Wasmtime
2
3This crate provides test case generators and oracles for use with fuzzing.
4
5These generators and oracles are generally independent of the fuzzing engine
6that might be using them and driving the whole fuzzing process (e.g. libFuzzer
7or AFL). As such, this crate does *not* contain any actual fuzz targets
8itself. Those are generally just a couple lines of glue code that plug raw input
9from (for example) `libFuzzer` into a generator, and then run one or more
10oracles on the generated test case.
11
12If you're looking for the actual fuzz target definitions we currently have, they
13live in `wasmtime/fuzz/fuzz_targets/*` and are driven by `cargo fuzz` and
14`libFuzzer`.
15