mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* graph-craft: fix direct wasm build * graph-craft: fix no serde feature failing to compile * graph-craft: make wgpu-executor properly optional * workspace: unify `image` formats in workspace * workspace: turn most dependencies into workspace deps, no actual changes * workspace: unify dependency features in workspace dep
12 lines
351 B
TOML
12 lines
351 B
TOML
[target.wasm32-unknown-unknown]
|
|
rustflags = [
|
|
# Currently disabled because of https://github.com/GraphiteEditor/Graphite/issues/1262
|
|
# The current simd implementation leads to undefined behavior
|
|
#"-C",
|
|
#"target-feature=+simd128",
|
|
"-C",
|
|
"target-feature=+bulk-memory",
|
|
"-C",
|
|
"link-arg=--max-memory=4294967296",
|
|
"--cfg=web_sys_unstable_apis",
|
|
]
|