├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── fuzz_target.rs └── run-fuzzer.sh /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | seeds 3 | corpus 4 | artifacts 5 | rust -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwrensha/fuzz-rustc/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwrensha/fuzz-rustc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwrensha/fuzz-rustc/HEAD/README.md -------------------------------------------------------------------------------- /fuzz_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwrensha/fuzz-rustc/HEAD/fuzz_target.rs -------------------------------------------------------------------------------- /run-fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwrensha/fuzz-rustc/HEAD/run-fuzzer.sh --------------------------------------------------------------------------------