GUI version of Minesweeper made with Rust and Macroquad
Go to file
2023-06-07 16:18:36 -04:00
.cargo init 2023-04-22 18:10:47 -04:00
assets general cleanup 2023-06-07 16:07:03 -04:00
src Fix clippy warnings 2023-06-07 16:18:36 -04:00
.gitignore init 2023-04-22 18:10:47 -04:00
Cargo.lock init 2023-04-22 18:10:47 -04:00
Cargo.toml init 2023-04-22 18:10:47 -04:00
LICENSE add license 2023-05-24 23:08:13 -04:00
minesweeper.html general cleanup 2023-06-07 16:07:03 -04:00
README.MD Update README.MD 2023-05-15 23:35:41 -04:00
rustfmt.toml init 2023-04-22 18:10:47 -04:00

Rust Minesweeper

For more information, and a WASM powered demo: https://alexanderbass.com/show/2023/rust-minesweeper/

Running

To run the desktop version:

cargo run

To compile to WASM:

cargo build --target wasm32-unknown-unknown --release

To run that WASM, copy the resulting target/wasm32-unknown-unknown/release/wasm into the same directory as minesweeper.html and serve both files through a webserver.