10 lines
377 B
TOML
10 lines
377 B
TOML
[build]
|
|
# Set the default build target for this project
|
|
target = "wasm32-unknown-unknown"
|
|
|
|
# Configuration for the wasm32-unknown-unknown target
|
|
[target.wasm32-unknown-unknown]
|
|
# Pass --cfg=wasm_js to rustc when compiling for this target.
|
|
# This is required by the getrandom crate.
|
|
rustflags = ["--cfg=wasm_js"] # For getrandom v0.3.x WASM support (required by rhai via ahash)
|