From db1bf77482afb9362e51158dbf7c6114dd3c8a52 Mon Sep 17 00:00:00 2001 From: kirbylife Date: Tue, 18 Jun 2019 15:07:23 -0500 Subject: [PATCH] added README.md info --- Cargo.toml | 2 +- README.md | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4fb9a7b..c521558 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "RustSweeper" +name = "rust_sweeper" version = "0.1.0" authors = ["kirbylife "] edition = "2018" diff --git a/README.md b/README.md index f00fcfa..42f8156 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ # rust_sweeper Minesweeper made with rust and ncurses + +## Dependencies +- ncurses +- rand + +## How to execute + +Simply execute +``` +cargo run +``` + +## Controls + +|key|action| +|---|---| +|Arrow keys|move arround the board| +|F|flag a box| +|Space|reveal a box| +|q|exit|