From a202d74549561536381cb4b036f573e2af320f73 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 | 4 +++- Cargo.toml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 0482267582..662f2367f3 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -17,6 +17,8 @@ jobs: name: Run cargo audit env: CARGO_TERM_COLOR: always + RUST_LOG: cargo=debug + CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse runs-on: ubuntu-latest permissions: pull-requests: read @@ -26,4 +28,4 @@ jobs: - name: cargo audit run: | - cargo audit + cargo audit --json 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"