2
0
Эх сурвалжийг харах

see git commit message rust-port 5d05c536

David Golembiowski 5 жил өмнө
parent
commit
6363bf34c0

+ 6 - 0
.gitignore

@@ -79,6 +79,12 @@ test/gtest/src/gtest-stamp/Debug/
 tools/assimp_view/assimp_viewer.vcxproj.user
 *.pyc
 
+### Rust ###
+# Generated by Cargo; will have compiled files and executables
+port/assimp_rs/target/
+# Backup files generated by rustfmt
+port/assimp_rs/**/*.rs.bk
+
 # Unix editor backups
 *~
 test/gtest/src/gtest-stamp/gtest-gitinfo.txt

+ 6 - 0
port/assimp_rs/Cargo.lock

@@ -0,0 +1,6 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "assimp_rs"
+version = "0.1.0"
+

+ 9 - 0
port/assimp_rs/Cargo.toml

@@ -0,0 +1,9 @@
+[package]
+name = "assimp_rs"
+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]

+ 0 - 0
port/assimp_rs/src/camera/mod.rs


+ 0 - 0
port/assimp_rs/src/core/mod.rs


+ 0 - 0
port/assimp_rs/src/errors/mod.rs


+ 0 - 0
port/assimp_rs/src/formats/mod.rs


+ 17 - 0
port/assimp_rs/src/lib.rs

@@ -0,0 +1,17 @@
+pub mod camera;
+pub mod core;
+pub mod errors;
+pub mod formats;
+pub mod material;
+pub mod postprocess;
+pub mod shims;
+pub mod socket;
+pub mod structs;
+
+#[cfg(test)]
+mod tests {
+    #[test]
+    fn it_works() {
+        assert_eq!(true, true);
+    }
+}

+ 0 - 0
port/assimp_rs/src/material/mod.rs


+ 0 - 0
port/assimp_rs/src/postprocess/mod.rs


+ 0 - 0
port/assimp_rs/src/shims/mod.rs


+ 0 - 0
port/assimp_rs/src/socket/mod.rs


+ 0 - 0
port/assimp_rs/src/structs/mod.rs