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: doc/book/src/reference/build-cache.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,9 +70,10 @@ change. Some of these directories are:
70
70
71
71
Directory | Description
72
72
----------|------------
73
-
<codestyle="white-space: nowrap">\<build-dir>/debug/deps/</code> | Dependencies and other artifacts.
74
73
<codestyle="white-space: nowrap">\<build-dir>/debug/incremental/</code> | `rustc`[incremental output], a cache used to speed up subsequent builds.
75
-
<codestyle="white-space: nowrap">\<build-dir>/debug/build/</code> | Output from [build scripts].
74
+
<codestyle="white-space: nowrap">\<build-dir>/debug/build/</code> | Build step results including compilation artifacts and [build script] output.
75
+
76
+
> **Note**: The build-dir layout was changed in Cargo 1.100.0, thus prior versions use a different layout. (see [#15010](https://github.com/rust-lang/cargo/issues/15010))
76
77
77
78
## Dep-info files
78
79
@@ -107,7 +108,7 @@ configuration][config]. Refer to sccache documentation for more details.
Copy file name to clipboardExpand all lines: doc/book/src/reference/unstable.md
+4-11Lines changed: 4 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,6 @@ Each new feature described below should explain how to use it.
82
82
*[min-publish-age](#min-publish-age) --- Filters out dependency versions published more recently than a configured minimum age.
83
83
* Output behavior
84
84
*[artifact-dir](#artifact-dir) --- Adds a directory where artifacts are copied to.
85
-
*[build-dir-new-layout](#build-dir-new-layout) --- Enables the new build-dir filesystem layout
86
85
*[Different binary name](#different-binary-name) --- Assign a name to the built binary that is separate from the crate name.
87
86
*[root-dir](#root-dir) --- Controls the root directory relative to which paths are printed
88
87
* Compile behavior
@@ -1735,8 +1734,6 @@ panic = "immediate-abort"
1735
1734
1736
1735
Use fine grain locking instead of locking the entire build cache.
1737
1736
1738
-
Note: Fine grain locking implicitly enables [build-dir-new-layout](#build-dir-new-layout) as fine grain locking builds on that directory reoganization.
0 commit comments