Skip to content

Commit

Permalink
fix: allow RUSTSEC-2023-0052 until fix is avail (#538)
Browse files Browse the repository at this point in the history
- temp workaround
# Conflicts:
#	Makefile
  • Loading branch information
dkhokhlov committed Aug 24, 2023
1 parent f350543 commit d0378a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,12 @@ lint-clippy: ## Checks for code errors

.PHONY:lint-audit
lint-audit: ## Audits packages for issues
$(RUST_COMMAND) "--env RUST_BACKTRACE=full" "cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2022-0040 --ignore RUSTSEC-2019-0033 --ignore RUSTSEC-2019-0034"
$(RUST_COMMAND) "--env RUST_BACKTRACE=full" "cargo audit \
--ignore RUSTSEC-2019-0033 \
--ignore RUSTSEC-2019-0034 \
--ignore RUSTSEC-2020-0071 \
--ignore RUSTSEC-2022-0040 \
--ignore RUSTSEC-2023-0052"

.PHONY:lint-docker
lint-docker: ## Lint the Dockerfile for issues
Expand Down

0 comments on commit d0378a5

Please sign in to comment.