You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know much about the target directory. As far as I can see, the folders ".fingerprint", "build", "deps", "incremental" in "target/debug" and "target/release" have a lot of files/directories that with same prefix name.
For example, some part of the result of command "tree" in a workspace is list below:
The crate "accesskit" has file folders in ".fingerprint", with some suffix. We can image that only one of them is useful, and could be digged out by the timestamp. So it would be safe to delete other files to avoid rebuilding the project. I think this is a good way to solve #9 .
The text was updated successfully, but these errors were encountered:
Yes I read that before, and noticed the '-s' and '-f' would delete useful files.
When we change some code and build the project, we can image that the compiler will rebuild the changed part, and link them with other unchaned part. However, the '-s' and '-f' flag would delete the unchanged part, so cargo must rebuild them.
I don't know much about the
target
directory. As far as I can see, the folders ".fingerprint", "build", "deps", "incremental" in "target/debug" and "target/release" have a lot of files/directories that with same prefix name.For example, some part of the result of command "tree" in a workspace is list below:
The crate "accesskit" has file folders in ".fingerprint", with some suffix. We can image that only one of them is useful, and could be digged out by the timestamp. So it would be safe to delete other files to avoid rebuilding the project. I think this is a good way to solve #9 .
The text was updated successfully, but these errors were encountered: