DEV Community

Discussion on: My release checklist for Rust programs

Collapse
 
vincentdephily profile image
vincentdephily

Some extra tips:

  • Use cargo outdated instead of deps.rs to get the info from your terminal.
  • Run cargo audit in your CI pipeline.
  • Run cargo fmt -- --check in your git commit hook.
Collapse
 
sharkdp profile image
David Peter

Thank you very much for these tips. I have updated the post to mention "cargo outdated" in favor of deps.rs.