From 2929b4f980eee1f285d97d65336b42baf4a3774e Mon Sep 17 00:00:00 2001 From: Adam Naji <110662505+Bashamega@users.noreply.github.com> Date: Wed, 11 Jun 2025 11:50:00 +0300 Subject: [PATCH 1/2] chore: run cargo audit --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4c7a2d..1f5c706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,5 +60,11 @@ jobs: - name: Test in release mode run: cargo test --release --all --verbose + - name: Install cargo-audit + run: cargo install cargo-audit --deny warnings + + - name: Run cargo audit + run: cargo audit + - name: Run all examples run: ./run-all-examples.sh From 3533fc1dbfac2c0a52b41d659f6cc34baec7eadd Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Sat, 22 Aug 2026 18:38:24 +0200 Subject: [PATCH 2/2] remove `--deny` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54fe786..b1d8d77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: run: cargo test --release --all --verbose - name: Install cargo-audit - run: cargo install cargo-audit --deny warnings + run: cargo install cargo-audit - name: Run cargo audit run: cargo audit