cargo-clean (1) Linux Manual Page
cargo-clean – Remove generated artifacts
Synopsis
cargo clean [OPTIONS]Description
Remove artifacts that cargo has generated in the past. If the –package argument is given, then SPEC is a package id specification which indicates which package should be built. If it is not given, then the current package is built. For more information on SPEC and its format, see the "cargo help pkgid" command.
Options
- -h, –help
- Print this message.
- -p SPEC, –package SPEC …
- Package to clean artifacts for.
- –manifest-path PATH
- Path to the manifest to the package to clean.
- –target TRIPLE
- Target triple to clean output for (default all).
- –release
- Whether or not to clean release artifacts.
- -v, –verbose
- Use verbose output.
- -q, –quiet
- No output printed to stdout.
- –color WHEN
- Coloring: auto, always, never.
Examples
Remove local package generated artifacts$
cargo clean
Clean release artifacts
$
cargo clean –release
