Skip to content

Commit 0677196

Browse files
committed
difftest: no workspace inheriting, may fix windows
1 parent a3afd95 commit 0677196

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

tests/difftests/tests/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,12 @@ unexpected_cfgs = { level = "allow", check-cfg = [
5252
] }
5353

5454
[workspace.dependencies]
55-
spirv-builder = { path = "../../../crates/spirv-builder", default-features = false }
5655
spirv-std = { path = "../../../crates/spirv-std", version = "=0.9.0" }
57-
spirv-std-types = { path = "../../../crates/spirv-std/shared", version = "=0.9.0" }
58-
spirv-std-macros = { path = "../../../crates/spirv-std/macros", version = "=0.9.0" }
5956
difftest = { path = "lib" }
60-
difftest-types = { path = "../types" }
6157
# External dependencies that need to be mentioned more than once.
6258
num-traits = { version = "0.2.15", default-features = false }
6359
glam = { version = ">=0.22, <=0.29", default-features = false }
6460
bytemuck = { version = "1.14", features = ["derive"] }
65-
num_enum = { version = "0.7.4", default-features = false }
6661

6762
# Enable incremental by default in release mode.
6863
[profile.release]

tests/difftests/tests/lang/core/ops/const_fold_int/const-fold-cpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ workspace = true
88
# GPU deps
99
[dependencies]
1010
spirv-std.workspace = true
11-
num_enum.workspace = true
11+
num_enum = { version = "0.7.4", default-features = false }
1212

1313
# CPU deps (for the test harness)
1414
[target.'cfg(not(target_arch = "spirv"))'.dependencies]

tests/difftests/tests/lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use-compiled-tools = [
1212
]
1313

1414
[target.'cfg(not(target_arch = "spirv"))'.dependencies]
15-
spirv-builder.workspace = true
16-
difftest-types.workspace = true
15+
spirv-builder = { path = "../../../../crates/spirv-builder", default-features = false }
16+
difftest-types = { path = "../../types" }
1717
serde = { version = "1.0", features = ["derive"] }
1818
serde_json = "1.0"
1919
wgpu = { version = "25.0.2", features = ["spirv", "vulkan-portability", "static-dxc"] }

0 commit comments

Comments
 (0)