oh-my-bash/aliases/cargo.aliases.md
2024-09-03 20:40:28 +09:00

954 B

Aliases cargo

Alias Command Description
cg 'cargo' launch cargo
cgr 'cargo run' run project
cgt 'cargo test' run tests
cgb 'cargo build' building a project
cgbr 'cargo build --release' building a project with compiler optimizations
cgi 'cargo init' initialize the project inside the directory
cgn 'cargo new' create a new project
cga 'cargo add' add a new dependency to the project
cgf 'cargo fmt' start formatting linters