From 30c934a87fa29ffb4780f545b1236d4ecb08c0e6 Mon Sep 17 00:00:00 2001 From: "David A. Ramos" Date: Mon, 25 Oct 2021 12:49:59 -0700 Subject: [PATCH] Ignore RUSTSEC-2020-0159 since this crate does not depend on system timezone The rationale is explained in https://github.com/chronotope/chrono/issues/499#issuecomment-946388161. --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5853cac..c885173 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,10 @@ jobs: if: ${{ matrix.rust == 'stable' }} run: | cargo install --force cargo-audit - cargo audit + # The chrono thread safety issue doesn't affect this crate since the crate does not rely + # on the system's local time zone, only UTC. See: + # https://github.com/chronotope/chrono/issues/499#issuecomment-946388161 + cargo audit --ignore RUSTSEC-2020-0159 - name: Check WASM build run: cargo check --target wasm32-unknown-unknown