first commit

pull/3195/head
David Golembiowski 2020-04-24 16:36:44 -04:00
parent 02ef435d55
commit 45e33ce1bf
2 changed files with 16 additions and 0 deletions

View File

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

View File

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