GUI version of Minesweeper made with Rust and Macroquad
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Alexander Bass 31c6c4858f Fix clippy warnings 11 months ago
.cargo init 1 year ago
assets general cleanup 11 months ago
src Fix clippy warnings 11 months ago
.gitignore init 1 year ago
Cargo.lock init 1 year ago
Cargo.toml init 1 year ago
LICENSE add license 12 months ago
README.MD Update README.MD 1 year ago
minesweeper.html general cleanup 11 months ago
rustfmt.toml init 1 year ago

README.MD

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.