diff --git a/Makefile b/Makefile index e90cf9249..665c051a3 100644 --- a/Makefile +++ b/Makefile @@ -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