-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add arbitrary
support
#1032
base: master
Are you sure you want to change the base?
Add arbitrary
support
#1032
Conversation
I haven't added this to CI yet. I'm also not sure we want these next to the definitions rather than in their own module...next to definitions makes the file noisy, but putting them in their own crate makes them further away from the type they are implementing on. |
Note that I had to manually implement rather than use the |
This isn't 100% yet because the arbitrary |
This adds optional support for https://github.com/rust-fuzz/arbitrary/ behind the `arbitrary` feature flag (off by default). This will be used in a future pull request to enable fuzzing using `cargo-fuzz`
This adds optional support for https://github.com/rust-fuzz/arbitrary/ behind
the
arbitrary1
feature flag (off by default).This will be used in a future pull request to enable fuzzing using
cargo-fuzz