rust-lang / wg-cargo-std-aware

Repo for working on "std aware cargo"
137 stars 8 forks source link

Support `cargo clean` #21

Open ehuss opened 5 years ago

ehuss commented 5 years ago

The cargo clean command currently does not know about std dependencies. There are multiple issues here:

I'm inclined to rearchitect how clean works instead of trying to shoehorn these fixes, since there are a number of other problems with how clean works.

ehuss commented 1 year ago

Triage: cargo clean -p <user crate> now works since cargo clean was redesigned in https://github.com/rust-lang/cargo/pull/8210.

-p for standard library dependencies still doesn't work.