Initial commit

master
kirbylife 2019-06-18 13:28:09 -05:00
commit 476ec4656e
3 changed files with 20 additions and 0 deletions

3
.gitignore vendored 100644
View File

@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock

9
Cargo.toml 100644
View File

@ -0,0 +1,9 @@
[package]
name = "RustSweeper"
version = "0.1.0"
authors = ["kirbylife <gabriel13m@gmail.com>"]
edition = "2018"
[dependencies]
ncurses = "5.86.0"
rand = "0.6"

8
src/main.rs 100644
View File

@ -0,0 +1,8 @@
/*
Author: @kirbylife
license: GPLv2
*/
fn main() {
}