From 968ec690d73b3fb03e2f373026bf691d96ef15be Mon Sep 17 00:00:00 2001 From: Franziskus Kiefer Date: Mon, 27 Sep 2021 12:25:31 +0200 Subject: [PATCH] fuzz only with rust-crypto for now --- .github/workflows/rust.yml | 3 --- fuzz/Cargo.toml | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 173e2a3..b58097f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -118,8 +118,5 @@ jobs: with: crate: cargo-fuzz version: latest - - name: Fuzz Base - if: matrix.os == 'ubuntu-latest' - run: cargo fuzz run base -- -runs=10000 - name: Fuzz Base w/ RustCrypto run: cargo fuzz run base -- -runs=10000 diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 38b6494..cf7dad7 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -14,6 +14,8 @@ libfuzzer-sys = "0.3" [dependencies.hpke-rs] path = ".." +default-features = false +features = ["rust-crypto"] # Prevent this from interfering with workspaces [workspace]