loiclec / fuzzcheck-rs

Modular, structure-aware, and feedback-driven fuzzing engine for Rust functions
MIT License
436 stars 13 forks source link

Export `MutatorWrapper` from fuzzcheck #11

Closed binier closed 3 years ago

binier commented 3 years ago

MutatorWrapper is pretty useful trait. With it we can easily create custom mutators that wrap on existing ones. For example one can wrap FixedLenVecMutator to create custom mutator, which will only generate vectors with concrete fixed length, based on the type.

loiclec commented 3 years ago

I agree! Thanks for the pull request :)