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.
1 parent 217388e commit 39397c4Copy full SHA for 39397c4
crates/cargo-gpu/src/install.rs
@@ -221,16 +221,6 @@ impl Install {
221
self.spirv_install.shader_crate.display()
222
);
223
224
- // Run a `cargo update` just in case the cached Cargo.lock we copied over
225
- // is a bit behind what's in rust-gpu
226
- let mut update_command = std::process::Command::new("cargo");
227
- update_command.current_dir(&checkout).arg("update");
228
- let update_output = update_command
229
- .stdout(std::process::Stdio::inherit())
230
- .stderr(std::process::Stdio::inherit())
231
- .output()?;
232
- anyhow::ensure!(update_output.status.success(), "...cargo update error!");
233
-
234
let mut build_command = std::process::Command::new("cargo");
235
build_command
236
.current_dir(&checkout)
0 commit comments