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: src/doc/src/reference/unstable.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,7 @@ Each new feature described below should explain how to use it.
84
84
*[build-std](#build-std) --- Builds the standard library instead of using pre-built binaries.
85
85
*[build-std-features](#build-std-features) --- Sets features to use with the standard library.
86
86
*[binary-dep-depinfo](#binary-dep-depinfo) --- Causes the dep-info file to track binary dependencies.
87
+
*[checksum-freshness](#checksum-freshness) --- When passed, the decision as to whether a crate needs to be rebuilt is made using file checksums instead of the file mtime.
87
88
*[panic-abort-tests](#panic-abort-tests) --- Allows running tests with the "abort" panic strategy.
The `-Z checksum-freshness` flag will replace the use of file mtimes in cargo's
520
+
fingerprints with a file checksum value. This is most useful on systems with a poor
521
+
mtime implementation, or in CI/CD. The checksum algorithm can change without notice between cargo versions. Fingerprints are used by cargo to determine when a crate needs to be rebuilt.
0 commit comments