Skip to content

Commit f1a947b

Browse files
schelltombh
authored andcommitted
don't use depth=1 for cargo tree as it misses spirv-std sometimes
1 parent feedfe1 commit f1a947b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/cargo-gpu/src/spirv_source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ impl SpirvSource {
188188
log::debug!("Running `cargo tree` on {}", exec_path.display());
189189
let output_cargo_tree = std::process::Command::new("cargo")
190190
.current_dir(&exec_path)
191-
.args(["tree", "--workspace", "--depth", "1", "--prefix", "none"])
191+
.args(["tree", "--workspace", "--prefix", "none"])
192192
.output()
193193
.unwrap();
194194
assert!(

0 commit comments

Comments
 (0)