1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 22:35:23 +02:00
tldr/pages/common/cargo-build.md
Lena 554fd30c20
cargo, cargo-{build,check,doc,run,test}: add option placeholders (#15895)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-15 23:28:32 +02:00

759 B

cargo build

Compile a local package and all of its dependencies. More information: https://doc.rust-lang.org/cargo/commands/cargo-build.html.

  • Build the package or packages defined by the Cargo.toml manifest file in the local path:

cargo {{[b|build]}}

  • Build artifacts in release mode, with optimizations:

cargo {{[b|build]}} {{[-r|--release]}}

  • Require that Cargo.lock is up to date:

cargo {{[b|build]}} --locked

  • Build all packages in the workspace:

cargo {{[b|build]}} --workspace

  • Build a specific package:

cargo {{[b|build]}} {{[-p|--package]}} {{package}}

  • Build only the specified binary:

cargo {{[b|build]}} --bin {{name}}

  • Build only the specified test target:

cargo {{[b|build]}} --test {{test_name}}