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
+18
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ Each new feature described below should explain how to use it.
91
91
*[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.
92
92
*[panic-abort-tests](#panic-abort-tests) --- Allows running tests with the "abort" panic strategy.
*[no-embed-metadata](#no-embed-metadata) --- Passes `-Zembed-metadata=no` to the compiler, which avoid embedding metadata into rlib and dylib artifacts, to save disk space.
94
95
*[target-applies-to-host](#target-applies-to-host) --- Alters whether certain flags will be passed to host build targets.
95
96
*[gc](#gc) --- Global cache garbage collection.
96
97
*[open-namespaces](#open-namespaces) --- Allow multiple packages to participate in the same API namespace
@@ -1914,6 +1915,23 @@ The `-Z rustdoc-depinfo` flag leverages rustdoc's dep-info files to determine
1914
1915
whether documentations are required to re-generate. This can be combined with
1915
1916
`-Z checksum-freshness` to detect checksum changes rather than file mtime.
1916
1917
1918
+
## no-embed-metadata
1919
+
* Original Pull Request: [#15378](https://github.com/rust-lang/cargo/pull/15378)
0 commit comments