-
Notifications
You must be signed in to change notification settings - Fork 17
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
Switch from derivative
to derive-where
#459
Conversation
`derivative` is marked as unmaintained by RUSTSEC but still used in Charon. We exclude it from the deny check until `derivative` is replaced in Charon (AeneasVerif/charon#459). By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
Thank you, this is a welcome change! Could you commit the updated |
|
I'm getting "note: an implementation of |
6ddb161
to
b9fd144
Compare
I see, there was a typo. I have fixed this but please run tests before submitting a PR next time. |
Ended up switching to a manual impl in the end. Should be good, let me know if there are other dependencies that are problematic for kani! |
Reverts #3708 The issue of `derivative` has been fixed in Charon: AeneasVerif/charon#459. Co-authored-by: Zyad Hassan <[email protected]>
Derivative has not been maintained in 3 years and recently been marked as unmaintained by RUSTSEC (https://rustsec.org/advisories/RUSTSEC-2024-0388).
This PR replaces
derivative
withderive-where
, a not dead alternative.