chore(audit): add configuration file for cargo-audit

This commit is contained in:
Orhun Parmaksız 2022-01-15 16:56:05 +03:00
parent bb80e4a85e
commit f5e04995c0
No known key found for this signature in database
GPG key ID: F83424824B3E4B90
2 changed files with 10 additions and 1 deletions

9
.cargo/audit.toml Normal file
View file

@ -0,0 +1,9 @@
[advisories]
ignore = [
"RUSTSEC-2021-0119", # `nix` - Out-of-bounds write in nix::unistd::getgrouplist
"RUSTSEC-2021-0019", # `xcb` - Multiple soundness issues
]
[output]
quiet = false
deny = ["warnings"]

View file

@ -152,7 +152,7 @@ jobs:
args: -- -D warnings
audit:
name: Perform security audit
name: Audit check
runs-on: ubuntu-latest
steps:
- name: Checkout the repository