added matrix init

This commit is contained in:
Jon Janzen
2021-03-26 16:32:00 -06:00
parent 6dafed1195
commit 7bb7fa8ab4
2 changed files with 16 additions and 0 deletions

9
matrix/Cargo.toml Normal file
View File

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

7
matrix/src/lib.rs Normal file
View File

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