Skip to content

Commit

Permalink
Ignoring specific CVE which can be ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
Narsil committed Nov 9, 2022
1 parent edeb409 commit 5ee582b
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 74 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Expand Up @@ -99,7 +99,9 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: audit
args: -D warnings -f ./bindings/python/Cargo.lock
# ignoring specific CVE which probably isn't affecting this crate
# https://github.com/chronotope/chrono/issues/602
args: -D warnings -f ./bindings/python/Cargo.lock --ignore RUSTSEC-2020-0071

- name: Install
working-directory: ./bindings/python
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -85,7 +85,9 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: audit
args: -D warnings -f ./tokenizers/Cargo.lock
# ignoring specific CVE which probably isn't affecting this crate
# https://github.com/chronotope/chrono/issues/602
args: -D warnings -f ./tokenizers/Cargo.lock --ignore RUSTSEC-2020-0071

# Verify that Readme.md is up to date.
- name: Make sure, Readme generated from lib.rs matches actual Readme
Expand Down
178 changes: 106 additions & 72 deletions bindings/python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5ee582b

Please sign in to comment.