mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-22 14:56:27 +00:00
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[workspace]
|
|
members = [
|
|
"examples/runners/cpu",
|
|
"examples/runners/ash",
|
|
"examples/runners/wgpu",
|
|
"examples/shaders/sky-shader",
|
|
"examples/shaders/simplest-shader",
|
|
"examples/shaders/compute-shader",
|
|
"examples/shaders/mouse-shader",
|
|
|
|
"crates/rustc_codegen_spirv",
|
|
"crates/spirv-builder",
|
|
"crates/spirv-std",
|
|
|
|
"tests",
|
|
"tests/deps-helper",
|
|
]
|
|
|
|
# Compile build-dependencies in release mode with
|
|
# the same settings as regular dependencies.
|
|
[profile.release.build-override]
|
|
opt-level = 3
|
|
codegen-units = 16
|
|
|
|
[patch.crates-io]
|
|
spirv-std = { path = "./crates/spirv-std" }
|
|
spirv-std-macros = { path = "./crates/spirv-std-macros" }
|
|
glam = { git = "https://github.com/bitshifter/glam-rs.git", rev ="b3e94fb" }
|
|
# TODO: Remove once next version is released - needed to include these two PRs:
|
|
# * Manishearth/compiletest-rs#240 (for handling SPIR-V extension across platforms)
|
|
# * Manishearth/compiletest-rs#241 (for the `$TEST_BUILD_DIR` path normalization)
|
|
compiletest_rs = { git = "https://github.com/Manishearth/compiletest-rs.git", rev = "9257f6d" }
|