summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2021-03-21 16:21:20 -0400
committerJack O'Connor <oconnor663@gmail.com>2021-03-21 21:14:13 -0400
commit05292a018b25e47c2f094aa335a3bef5f4c0ac1a (patch)
tree5ee1103ef6b3dad45792f436f3407f1a21a19444 /.github
parent07b746b1b4792f8885fe8749b22dd6242467b674 (diff)
get rid of the standalone "*_rayon" functions
These clutter the toplevel API, and their prominence might lead callers to prefer them as a first resort, which probably isn't a good idea. Restricting multithreading to `Hasher::update_rayon` feels better, similar to what we've done with `Hasher::finalize_xof`. (But I think `update_rayon` is still an improvement over the trait-based interface that it replaced.)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2c410f0..7ce4b59 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -89,7 +89,7 @@ jobs:
- run: cargo test --features=no_avx512,no_avx2,no_sse41,no_sse2,pure --release
# Test benchmarks. RUSTC_BOOTSTRAP=1 lets this run on non-nightly toolchains.
- - run: cargo test --benches
+ - run: cargo test --benches --features=rayon
env:
RUSTC_BOOTSTRAP: 1
# Test vectors.