Using voprf as a dependency (#248)

* Using voprf as a dependency

* Adding back x25519 and KeGroup

* Addressing comments
This commit is contained in:
Kevin Lewi
2021-10-25 02:54:32 -07:00
committed by GitHub
parent f1f4184400
commit 29b2ebef1b
34 changed files with 1638 additions and 2452 deletions
+8 -1
View File
@@ -163,6 +163,13 @@ jobs:
benches:
name: cargo bench compilation
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
backend_feature:
- u64_backend
- u32_backend
- p256,u64_backend
steps:
- name: Checkout sources
uses: actions/checkout@v2
@@ -178,7 +185,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: bench
args: --features "bench" --no-run
args: --no-default-features --features bench --features ${{ matrix.backend_feature }} --no-run
clippy:
name: cargo clippy