You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building from the ground up with fuzzing in mind is always beneficial to libraries, especially ones that define their own types.
Meaning the Arbitrary trait should be implemented for all types, maybe even on the features themselves. This way, setting up libFuzzer, cargo fuzz, or AFL is easy.
The standard approach is to add a feature gate arbitrary that reveals the Arbitrary trait implementations when enabled.
The text was updated successfully, but these errors were encountered:
Building from the ground up with fuzzing in mind is always beneficial to libraries, especially ones that define their own types.
Meaning the Arbitrary trait should be implemented for all types, maybe even on the features themselves. This way, setting up
libFuzzer
,cargo fuzz
, orAFL
is easy.The standard approach is to add a feature gate
arbitrary
that reveals theArbitrary
trait implementations when enabled.The text was updated successfully, but these errors were encountered: