A way for cargo clean
to remove content for a specific toolchain version
#5113
Labels
Command-clean
S-needs-design
Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted.
Looks like
cargo
can cache result ofcargo build
for different toolchains,if I run
cargo +stable build && cargo +nightly build && cargo +stable build
with empty targetit build only two times, the second run of
cargo +stable build
does nothing.This is great.
But if I run
cargo +nightly clean
the next run ofcargo +stable build
also run full rebuild.It would be great if
cargo +nightly build
clean cache related only to nightly toolchain,cargo +stable clean
clean cache related only to stable toolchain and so on.The text was updated successfully, but these errors were encountered: