cargo-build: add page (#4302)

beep
Axel Navarro 2020-09-08 13:19:03 -03:00 committed by GitHub
parent 7229778c1d
commit 43c136ffe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,32 @@
# 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 build`
- Build artifacts in release mode, with optimizations:
`cargo build --release`
- Require that `Cargo.lock` is up to date:
`cargo build --locked`
- Build all packages in the workspace:
`cargo build --workspace`
- Build a specific package:
`cargo build --package {{package}}`
- Build only the specified binary:
`cargo --bin {{name}}`
- Build only the specified test target:
`cargo build --test {{testname}}`

View File

@ -1,4 +1,4 @@
# cargo-test
# cargo test
> Execute the unit and integration tests of a Rust package.
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-test.html>.