A cargo subcommand cleans all projects under specified directory.
To clean all projects under current directory, run this subcommand with --all / -r
option:
cargo clean-recursive --all
If you want to clean releace build only, use --release / -r
option:
cargo clean-recursive --release
Also, you can use --doc / -d
option to clean docs:
cargo clean-recursive --doc
You can specify --release
and --doc
at the same time.