We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5ddb6 commit 72e1373Copy full SHA for 72e1373
crates/spirv-builder/src/test/mod.rs
@@ -43,7 +43,7 @@ edition = "2018"
43
crate-type = ["dylib"]
44
45
[dependencies]
46
-spirv-std = { path = "../../spirv-std" }
+spirv-std = { path = "../../crates/spirv-std" }
47
48
[workspace]
49
"#;
@@ -60,7 +60,7 @@ fn panic(_: &PanicInfo) -> ! {
60
61
62
fn setup(src: &str) -> Result<PathBuf, Box<dyn Error>> {
63
- let project = Path::new("../target/test-spirv").to_owned();
+ let project = Path::new("../../target/test-spirv").to_owned();
64
let cargo_toml = project.join("Cargo.toml");
65
let lib_rs = project.join("src/lib.rs");
66
std::fs::create_dir_all(lib_rs.parent().unwrap())?;
0 commit comments