mirror of
https://github.com/bevyengine/bevy
synced 2024-12-22 11:03:06 +00:00
9a89295a17
# Objective Fixes #3352 Fixes #3208 ## Solution - Update wgpu to 0.12 - Update naga to 0.8 - Resolve compilation errors - Remove [[block]] from WGSL shaders (because it is depracated and now wgpu cant parse it) - Replace `elseif` with `else if` in pbr.wgsl
20 lines
524 B
TOML
20 lines
524 B
TOML
[package]
|
|
name = "crevice-tests"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
wgpu-validation = ["wgpu", "naga", "futures"]
|
|
|
|
[dependencies]
|
|
crevice = { path = ".." }
|
|
crevice-derive = { path = "../crevice-derive", features = ["debug-methods"] }
|
|
|
|
anyhow = "1.0.44"
|
|
bytemuck = "1.7.2"
|
|
memoffset = "0.6.4"
|
|
mint = "0.5.5"
|
|
|
|
futures = { version = "0.3.17", features = ["executor"], optional = true }
|
|
naga = { version = "0.8.0", features = ["glsl-in", "wgsl-out"], optional = true }
|
|
wgpu = { version = "0.12.0", optional = true }
|