[package] name = "chaos-game-rs" version = "0.1.0" edition = "2024" [dependencies] bevy = "0.16" rand = "0.9.2" rand_chacha = "0.9.0" [features] dynamic_linking = ["bevy/dynamic_linking"] # For WASM builds, we need to use the browser's RNG back-end. # This also requires the extra rustflags in `.cargo/config.toml` [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.3.3", features = ["wasm_js"] }