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
Copy file name to clipboardExpand all lines: posts/2023-12-11-cargo-cache-cleaning.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ This post includes:
11
11
- A description of what this means ([What is this feature?](#what-is-this-feature))
12
12
- A call for help ([What to watch out for](#what-to-watch-out-for) and [Request for feedback](#request-for-feedback))
13
13
- Implementation details ([Design considerations and implementation details](#design-considerations-and-implementation-details))
14
-
- An outline of what is planned for the future which includes cleaning of target directories ([Plan for the future](#plan-for-the-future))
14
+
- An outline of what is planned for the future ([Plan for the future](#plan-for-the-future))
15
15
16
16
In short, we are asking people who use the nightly channel to enable this feature and report any issues you encounter on the [Cargo issue tracker][cargo-issues].
17
17
To enable it, place the following in your Cargo config file (typically located in `~/.cargo/config.toml` or `%USERPROFILE%\.cargo\config.toml` for Windows):
@@ -44,6 +44,8 @@ The new garbage collection ("GC") feature adds tracking of this cache data so th
44
44
It keeps an SQLite database which tracks the last time the various cache elements have been used.
45
45
Every time you run a cargo command that reads or writes any of this cache data, it will update the database with a timestamp of when that data was last used.
46
46
47
+
What isn't yet included is cleaning of target directories, see [Plan for the future](#plan-for-the-future).
48
+
47
49
[crates.io]: https://crates.io/
48
50
[registry index data]: https://doc.rust-lang.org/cargo/reference/registry-index.html
0 commit comments