1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 08:17:59 +01:00
tldr/pages/common/cargo.md

33 lines
545 B
Markdown
Raw Normal View History

2016-05-05 03:39:32 +02:00
# cargo
> Rust package manager.
> Manage Rust projects and their module dependencies (crates).
- Search for crates:
`cargo search {{search_string}}`
- Install a crate:
`cargo install {{crate_name}}`
- List installed crates:
`cargo install --list`
- Create a new binary Rust project in the current directory:
`cargo init --bin`
- Create a new library Rust project in the current directory:
`cargo init`
- Build the Rust project in the current directory:
`cargo build`
- Build with multiple parallel jobs:
`cargo build -j {{jobs}}`