mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-22 06:45:13 +00:00
f88ae5b28a
* Add parameterized Image type * nits * Update crates/spirv-std/src/lib.rs * Update crates/rustc_codegen_spirv/src/symbols.rs * Update crates/rustc_codegen_spirv/src/symbols.rs * Update symbols.rs
44 lines
1.5 KiB
TOML
44 lines
1.5 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",
|
|
"examples/multibuilder",
|
|
|
|
"crates/rustc_codegen_spirv",
|
|
"crates/spirv-builder",
|
|
"crates/spirv-std",
|
|
"crates/spirv-std/shared",
|
|
"crates/spirv-std/macros",
|
|
|
|
"tests",
|
|
"tests/deps-helper",
|
|
]
|
|
|
|
# Enable incremental by default in release mode.
|
|
[profile.release]
|
|
incremental = true
|
|
# HACK(eddyb) this is the default but without explicitly specifying it, Cargo
|
|
# will treat the identical settings in `[profile.release.build-override]` below
|
|
# as different sets of `rustc` flags and will not reuse artifacts between them.
|
|
codegen-units = 256
|
|
|
|
# Compile build-dependencies in release mode with the same settings
|
|
# as regular dependencies (including the incremental enabled above).
|
|
[profile.release.build-override]
|
|
opt-level = 3
|
|
incremental = true
|
|
codegen-units = 256
|
|
|
|
[patch.crates-io]
|
|
spirv-std = { path = "./crates/spirv-std" }
|
|
spirv-std-macros = { path = "./crates/spirv-std/macros" }
|
|
# 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" }
|