2
0
David Golembiowski 5 жил өмнө
parent
commit
45e33ce1bf

+ 9 - 0
port/AssimpRs/Cargo.toml

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

+ 7 - 0
port/AssimpRs/src/lib.rs

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