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.
-Zbuild-std
1 parent 326694e commit af04d6eCopy full SHA for af04d6e
src/prepare.rs
@@ -140,7 +140,7 @@ impl<'a> Prepare<'a> {
140
fn fetch_deps(&mut self) -> Result<(), Error> {
141
let mut missing_deps = false;
142
let res = Command::new(self.workspace, self.toolchain.cargo())
143
- .args(&["fetch", "--manifest-path", "Cargo.toml"])
+ .args(&["fetch", "-Zbuild-std", "--manifest-path", "Cargo.toml"])
144
.cd(&self.source_dir)
145
.process_lines(&mut |line, _| {
146
if line.contains("failed to load source for dependency") {
0 commit comments