commit ffca6f8b587c0307b0ceb575aef3e58bff283703 Author: Jake Probst Date: Wed May 29 22:34:00 2019 -0700 init diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..018f605 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "libpso" +version = "0.1.0" +authors = ["Jake Probst "] +edition = "2018" + +[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); + } +}