diff options
| author | Jack O'Connor <[email protected]> | 2021-03-21 15:01:42 -0400 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2021-03-21 15:53:26 -0400 |
| commit | 07b746b1b4792f8885fe8749b22dd6242467b674 (patch) | |
| tree | afb0b5e5d20754c2a55050ecb3b54af62a9ae531 /.github | |
| parent | 421745b033e9b3ccf21819d06528677aab9d083c (diff) | |
gate digest and crypto-mac implementations behind "traits-preview"
This approach was suggested by @tarcieri at
https://github.com/BLAKE3-team/BLAKE3/pull/157.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 464a411..2c410f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,8 @@ jobs: - name: print instruction set support run: cargo run --quiet working-directory: ./tools/instruction_set_support - # Default tests plus Rayon. - - run: cargo test --features=rayon + # Default tests plus Rayon and RustCrypto trait implementations. + - run: cargo test --features=rayon,traits-preview # no_std tests. - run: cargo test --no-default-features |
