Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Cargo Clean - Remove Build Artifacts | Online Free DevTools by Hexmos

Clean Rust build artifacts with Cargo Clean. Remove target directories, documentation, and release builds for cleaner builds. Free online tool, no registration required.

cargo-clean

Remove generated artifacts in the target directory. More information: https://doc.rust-lang.org/cargo/commands/cargo-clean.html.

  • Remove the entire target directory:

cargo clean

  • Remove documentation artifacts (the target/doc directory):

cargo clean --doc

  • Remove release artifacts (the target/release directory):

cargo clean {{[-r|--release]}}

  • Remove artifacts in the directory of the given profile (in this case, target/debug):

cargo clean --profile {{dev}}

See Also