Files
another-boids-in-rust/.cargo/config.toml
Robert Garrett 68d6de9a83 Add a WASM build configuration
The config.toml lets me run `cargo run --target wasm32-unknown-unknown`
and host a dev server.

I've adjusted the Cargo.toml to use the kdtree_rayon feature by default,
but disable the Rayon feature for WASM builds (because it doesn't work).
2025-09-03 14:41:53 -05:00

3 lines
62 B
TOML

[target.wasm32-unknown-unknown]
runner = "wasm-server-runner"