We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e32e772 + 83b0203 commit cfb57e3Copy full SHA for cfb57e3
collector/src/execute.rs
@@ -319,6 +319,10 @@ impl<'a> CargoProcess<'a> {
319
// and any in-tree dependencies, and we don't want that; it wastes
320
// time.
321
.env("CARGO_INCREMENTAL", "0")
322
+ // We need to use -Z flags (for example, to force enable ICH
323
+ // verification) so unconditionally enable unstable features, even
324
+ // on stable compilers.
325
+ .env("RUSTC_BOOTSTRAP", "1")
326
.current_dir(cwd)
327
.arg(subcommand)
328
.arg("--manifest-path")
0 commit comments