Game of life implemented in Rust with Egui UI library. Compilable in WASM to web embedding.
 
 
Go to file
flavien da45019628 docs(readme): updated readme 2022-12-27 12:37:04 +01:00
src feat(final-version): final version with all features - embeded in cyberduck.blog 2022-12-27 12:34:03 +01:00
.gitignore docs(README): readme + cargo fmt/clippy fixes 2022-12-21 16:30:43 +01:00
.pre-commit-config.yaml feat(initial): initial commit 2022-12-21 16:10:42 +01:00
Cargo.lock feat(toolbar): Parameters toolbar + click interaction 2022-12-24 19:44:30 +01:00
Cargo.toml feat(toolbar): Parameters toolbar + click interaction 2022-12-24 19:44:30 +01:00
README.md docs(readme): updated readme 2022-12-27 12:37:04 +01:00
index.html feat(final-version): final version with all features - embeded in cyberduck.blog 2022-12-27 12:34:03 +01:00

README.md

Game of life

Game of life implementation in Rust with egui UI library.
Compilable in WASM with trunk for Web embedding.

build and run

native
Release mode with egui is really faster so you must run with:
cargo run --release

wasm
Add wasm32 build target with:
rustup target add wasm32-unknown-unknown
Install trunk with:
cargo install trunk
Build with:
trunk build --release
You can now open the index.html file built in the dist folder in your browser to run the game.