LFDT-Lockness / generic-ec

Generic elliptic curve cryptography in Rust
Apache License 2.0
2 stars 2 forks source link

Fix no_std support after updating to latest udigest #43

Closed survived closed 3 weeks ago

survived commented 1 month ago

generic-ec is dependent on std feature of udigest which breaks no_std support. It used to do no harm as std feature in udigest was no-op, however, in the latest update it's no longer no-op.

PR removes dependency on std feature of udigest

Clippy still produces false-positives in the tests

Changelog check also seem to produce a false-positive

survived commented 3 weeks ago

@maurges all deps are updated, it's ready