浏览代码

first commit

David Golembiowski 5 年之前
父节点
当前提交
45e33ce1bf
共有 2 个文件被更改,包括 16 次插入0 次删除
  1. 9 0
      port/AssimpRs/Cargo.toml
  2. 7 0
      port/AssimpRs/src/lib.rs

+ 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);
+    }
+}