RustCrypto / hashes

Collection of cryptographic hash functions written in pure Rust
1.81k stars 245 forks source link

Add CI `no_std` optional features integration check #457

Closed pinkforest closed 1 year ago

pinkforest commented 1 year ago

Tests all no_std features with cargo hack in a target that does not have std available

Some optional features may break no_std integration that may accidentally bring std

Mirrors what we are doing for dalek:

newpavlov commented 1 year ago

The blake2 job fails because it tries to test Nightly-only features on stable channel.

pinkforest commented 1 year ago

Yeah I have a commit ready in push but I didn't want to burn CI before I confirm couple of things re: toolchain in zulip

As the toolchain on it seems to be pinned on some specific nightly I was wondering about

newpavlov commented 1 year ago

Closing in favor of #485