From c64b4e2d4a19097aa55e7b54501f990aa83bdc23 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 6 May 2021 11:17:51 -0700 Subject: [PATCH] sha2: fix missing documentation on compression functions --- .github/workflows/sha2.yml | 1 + sha2/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sha2.yml b/.github/workflows/sha2.yml index bff236159..75ae8d9a6 100644 --- a/.github/workflows/sha2.yml +++ b/.github/workflows/sha2.yml @@ -70,6 +70,7 @@ jobs: - run: cargo test --target ${{ matrix.target }} --release --no-default-features - run: cargo test --target ${{ matrix.target }} --release - run: cargo test --target ${{ matrix.target }} --release --features asm + - run: cargo test --target ${{ matrix.target }} --release --all-features # macOS tests macos: diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 46bddad2e..de9ce4cf4 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -38,4 +38,3 @@ asm = ["sha2-asm", "libc"] compress = [] # Expose compress function force-soft = [] # Force software implementation asm-aarch64 = ["asm"] # DEPRECATED: use `asm` instead -