-
Notifications
You must be signed in to change notification settings - Fork 237
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
chore: remove proptest in all crates and Arbitrary derives #966
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which derives are missing?
just this: alloy/crates/serde/src/other/mod.rs Line 175 in c2dd7ce
used for this:
|
Ah yeah the custom impl and test can be removed, it's only there because proptest derive doesn't support recursion |
e8ef353
to
4ba7d70
Compare
Motivation
This was only required because reth required these types to implement
proptest::Arbitrary
. This is no longer the case, andarbitrary::Arbitrary
is already usable.Solution
Remove
almostall proptest derives, remove unused proptest dependencies.There is a singleproptest!
left, which is for other fields, would like to know whether that's necessary or not.PR Checklist