Rust Aliases
Short Rust commands.
This page introduces one alias group and its common command shortcuts. Read it first to understand naming conventions, expected inputs, and safe execution patterns. Then open the reference appendix for the complete command inventory and exact syntax. These aliases reduce repeated typing and preserve consistent workflow behavior on macOS, Linux, and WSL.
When to use
Use this page before daily shell work when you need predictable command patterns.
What is included
- Aliases: 75
- Helper functions: 0
- Source files: 1
Quick examples
cg→'cargo' # Cargo shortcutcga→'cg add' # Add dependencycgad→'cg add --dev' # Add dev dependencycgaud→'cg audit' # Security vulnerabilities checkcgb→'cg build' # Build debugcgba→'cg build --all-targets' # Build all targetscgbh→'cg bench' # Run benchmarkscgbl→'cg bloat' # Binary size analysiscgbp→'cg build --release --profile' # Build with specific profilecgbr→'cg build --release' # Build releasecgbt→'cg build --all-features' # Build with all featurescgc→'cg check' # Check compilation
Next step
Open the full list: