diff options
author | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-12 20:28:22 -0600 |
---|---|---|
committer | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-12 20:28:22 -0600 |
commit | abc4111ac1c877a7683f416fa374cef53a411304 (patch) | |
tree | 371c3d2587fa812755bec7d8f1ccc58fb09e0717 | |
download | tosin-abc4111ac1c877a7683f416fa374cef53a411304.tar.gz tosin-abc4111ac1c877a7683f416fa374cef53a411304.zip |
initial commit
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Cargo.toml | 9 | ||||
-rw-r--r-- | src/lib.rs | 7 |
3 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..52b5213 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "tosin" +version = "0.1.0" +authors = ["Melody Horn / boringcactus <melody@boringcactus.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} |