-
Notifications
You must be signed in to change notification settings - Fork 104
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
FEAT(stark252 field): Adds Stark252 curve #494
Conversation
@PatStiles Thanks for adding this! 🚀 👍🏻 |
019fcf9
to
9465918
Compare
@jeremyfelder I'm having trouble addressing the failing cargo test in the CI which is failing due to a lack of ArkField declarationfor stark252 (arkworks does not implement it). Out of curiosity I ran the same test for icicle-babybear and saw it also failed within that crate. Let me know if you have any suggestions for addressing the issue. |
The CI tests for stark252 need to be separated out like the babybear tests; https://github.com/PatStiles/icicle/blob/feat/stark252_field/.github/workflows/rust.yml#L64-L73. |
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.
@PatStiles Looks great!
Can you add a build.rs file for stark252 to link to the static lib. Similar to babybear's but with the EXT_FIELD = OFF
@jeremyfelder addressed! |
@ChickenLover Should be resolved! |
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.
I think this should be the last change
## Describe the changes Adds support for the stark252 base field.
Describe the changes
Rebase of #493 after merging of V2.