Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-29 00:18:23 +00:00
parent a3692d638b
commit 75f807d6af
175 changed files with 1107 additions and 775 deletions

View File

@@ -15,11 +15,11 @@ source: https://github.com/tldr-pages/tldr.git
- Build artifacts in release mode, with optimizations:
`cargo rustc --release`
`cargo rustc {{[-r|--release]}}`
- Compile with architecture-specific optimizations for the current CPU:
`cargo rustc --release -- -C target-cpu=native`
`cargo rustc {{[-r|--release]}} -- -C target-cpu=native`
- Compile with speed optimizations:
@@ -35,7 +35,7 @@ source: https://github.com/tldr-pages/tldr.git
- Build a specific package:
`cargo rustc --package {{package}}`
`cargo rustc {{[-p|--package]}} {{package}}`
- Build only the specified binary: