This commit is contained in:
Paul Stemmet 2021-06-01 13:31:00 +00:00
commit 847cf54400
Signed by: Paul Stemmet
GPG Key ID: EDEA539F594E7E75
3 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

9
Cargo.toml Normal file
View File

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

7
src/lib.rs Normal file
View File

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