From 3e40f795daf844c90738106736b2d2b8c7afa862 Mon Sep 17 00:00:00 2001 From: Razvan Dimescu Date: Sat, 21 Mar 2026 10:53:09 +0200 Subject: [PATCH] add cargo-audit to Makefile lint target Co-Authored-By: Claude Opus 4.6 --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5b0165c..d25d697 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ -.PHONY: all build lint fmt check test clean deploy +.PHONY: all build lint fmt check audit test clean deploy all: lint build build: cargo build -lint: fmt check +lint: fmt check audit fmt: cargo fmt --check @@ -13,6 +13,9 @@ fmt: check: cargo clippy -- -D warnings +audit: + cargo audit + test: cargo test