Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 246 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 246 Bytes

rust

  • Create project: cargo new <name>
  • Build dev version: cargo build
  • Build release version: cargo build --release
  • Build & run version: cargo run
  • Build & check version: cargo check
  • Update dependency version: cargo update