We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8276307 commit 83a3003Copy full SHA for 83a3003
crates/bevy_render/Cargo.toml
@@ -57,7 +57,9 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.12.0-dev" }
57
image = { version = "0.24", default-features = false }
58
59
# misc
60
-wgpu = { version = "0.17.0", features=["naga"] }
+# `fragile-send-sync-non-atomic-wasm` feature means we can't use WASM threads for rendering
61
+# It is enabled for now to avoid having to do a significant overhaul of the renderer just for wasm
62
+wgpu = { version = "0.17.0", features=["naga", "fragile-send-sync-non-atomic-wasm"] }
63
codespan-reporting = "0.11.0"
64
naga = { version = "0.13.0", features = ["wgsl-in"] }
65
serde = { version = "1", features = ["derive"] }
0 commit comments