When I run cargo build
, various libs get stored within the folder /usr/local/lib/rustlib/
.
What is the correct way to clear these libs? I could rm
these files manually, but would that be the right thing to do? I noticed that /usr/local/lib/rustlib/manifest
is a file containing a list of the fill file paths of all the libs, and hence might be breaking something if I remove these files manually.
~/.cargo
, that is what I was looking for! – Sulfanilamide