From 3549cb68451c6a0ba812e19c2d79b6f7b93d6b4d Mon Sep 17 00:00:00 2001 From: Troy Karan Harrison Date: Thu, 27 Aug 2020 10:59:25 +0200 Subject: [PATCH] Modify command to execute `cargo audit` --- modules/lang/rust/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/rust/autoload.el b/modules/lang/rust/autoload.el index dab7e68e4..7f4fc80b5 100644 --- a/modules/lang/rust/autoload.el +++ b/modules/lang/rust/autoload.el @@ -23,4 +23,4 @@ (defun +rust/cargo-audit () "Run 'cargo audit' for the current project." (interactive) - (rustic-run-cargo-command "cargo audit -f")) + (rustic-run-cargo-command "cargo audit"))