Initial commit

master
kirbylife 2020-05-05 13:46:37 -05:00
commit 78e0c40cd6
3 changed files with 18 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

9
Cargo.toml 100644
View File

@ -0,0 +1,9 @@
[package]
name = "raspa"
version = "0.1.0"
authors = ["kirbylife <gabriel13m@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

7
src/lib.rs 100644
View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}