this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add shortcut for cargo audit

+5 -1
+5 -1
justfile
··· 7 7 act 8 8 9 9 # run all checks 10 - check: fmt test 10 + check: fmt test audit 11 11 cargo clippy 12 12 pre-commit run --all-files --show-diff-on-failure 13 13 nix flake check ··· 20 20 # run tests 21 21 test: 22 22 cargo nextest run 23 + 24 + # run security audit on dependencies 25 + audit: 26 + cargo audit