From f93b0c0f0300d02ff73c008b33ee62a01c99903e Mon Sep 17 00:00:00 2001 From: baoyachi Date: Sat, 15 Jul 2023 20:50:37 +0800 Subject: [PATCH] update github actions script:cargo b use all features --- .github/workflows/check.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 33cf198..62c0014 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -34,7 +34,7 @@ jobs: - name: Check with clippy run: cargo clippy --all -- -D warnings - name: Build Release - run: cargo build --release + run: cargo build --release --all-features - name: Run tests run: cargo test --all-features --all @@ -44,7 +44,7 @@ jobs: toolchain: nightly override: true - name: Build on nightly - run: cargo build --release + run: cargo build --release --all-features windows-vcpkg: name: windows-vcpkg runs-on: windows-latest diff --git a/Cargo.toml b/Cargo.toml index c4929b1..af8b1f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha256" -version = "1.2.0" +version = "1.2.1" authors = ["baoyachi "] edition = "2018" description = "sha256 crypto digest"