From 05fb0b6c2ac6da8313e803e00e18710383423040 Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Mon, 23 Oct 2023 09:40:36 -0700 Subject: [PATCH] An attempt to fix our audit action --- .github/workflows/audit.yml | 2 ++ Cargo.toml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 0482267582..24cff85a04 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -23,6 +23,8 @@ jobs: contents: read steps: - uses: actions/checkout@v3 + run: cargo install cargo-audit + - name: cargo audit run: | diff --git a/Cargo.toml b/Cargo.toml index 1767e8e244..368e4eb100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,6 +42,7 @@ compact-gate = ["ipa-macros/compact-gate"] # but it has nothing to do with IPA. aggregate-circuit = [] +# test change [dependencies] aes = "0.8.3" async-trait = "0.1.68"