franziskuskiefer / hpke-rs

Pure Rust implementation of HPKE (https://www.rfc-editor.org/rfc/rfc9180.html)
28 stars 14 forks source link

no-std-ify hpke-rs-crypto #50

Closed japaric closed 7 months ago

japaric commented 7 months ago

this is a semver breaking change because the "std" Cargo feature is added as an opt-in feature.

this makes the crate itself not depend on libstd but to achieve true no-std support the dependencies need to not pull in libstd and for that #47 and #49 are required

japaric commented 7 months ago

fixed the merge conflict. I'll open a separate PR for the CI job