facebook / voprf

An implementation of a verifiable oblivious pseudorandom function (RFC 9497)
Apache License 2.0
56 stars 15 forks source link

Update `curve25519-dalek` to 4.0.0-pre.5 #86

Closed daxpedda closed 1 year ago

daxpedda commented 1 year ago

There has now been some significant positive movement on curve25519, including updated dependencies. I also added the doc_auto_cfg feature behind a docsrs cfg flag to improve the documentation generated.

I guess for us the biggest change is removing all the re-exported crate features. Now --all-features can be used and features are additive, as they should be.

CI might need to be improved now, like testing --all-features or 32-bit targets. @kevinlewi I gave you write access, so feel free to add more tests as you deem fit.

kevinlewi commented 1 year ago

Thanks for this! I will add an all-features test in a follow-up.