From ac8bc7fa03f0ddd36762079e9e25cbb3023faf2d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 18 Feb 2021 11:10:31 +0100 Subject: [PATCH] Fix deprecated option name for cargo audit --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index ea952da5ff..974cc7d861 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -268,7 +268,7 @@ description = "Run cargo audit on all crates" workspace = false dependencies = ["check", "install-audit"] command = "cargo" -args = ["audit", "--deny-warnings", "--ignore=RUSTSEC-2019-0031", "--ignore=RUSTSEC-2020-0016"] +args = ["audit", "--deny", "warnings", "--ignore=RUSTSEC-2019-0031", "--ignore=RUSTSEC-2020-0016"] [tasks.bind-compatibility] description = "Run compatibility tests, currently the BIND9 installation has issues, set TDNS_BIND_PATH to another BIND9 installation"