Options (2)
booleanCheck the current package
Example:
cargo {{[c|check]}}-F, --featuresbooleanCheck the current package with the features `feature1` and `feature2`
Example:
cargo {{[c|check]}} {{[-F|--features]}} {{feature1,feature2}}Examples (5)
Check the current package
cargo [c|check]Check all tests
cargo [c|check] --testsCheck the integration tests in `tests/integration_test1.rs`
cargo [c|check] --test integration_test1Check the current package with the features `feature1` and `feature2`
cargo [c|check] [-F|--features] feature1,feature2Check the current package with default features disabled
cargo [c|check] --no-default-featuresmade by @shridhargupta | data from tldr-pages