|
@@ -1,13 +1,43 @@
|
|
|
-# ---> Rust
|
|
|
-# Compiled files
|
|
|
-*.o
|
|
|
-*.so
|
|
|
-*.rlib
|
|
|
-*.dll
|
|
|
+100daysofrust/.gitignore
|
|
|
+# Rust build output
|
|
|
+target/
|
|
|
+**/target/
|
|
|
|
|
|
-# Executables
|
|
|
-*.exe
|
|
|
+# Cargo package manager files
|
|
|
+Cargo.lock
|
|
|
+**/Cargo.lock
|
|
|
|
|
|
-# Generated by Cargo
|
|
|
-/target/
|
|
|
+# Backup and temporary files
|
|
|
+*.rs.bk
|
|
|
+*.swp
|
|
|
+*.swo
|
|
|
+*~
|
|
|
+*.tmp
|
|
|
|
|
|
+# IDEs and editors
|
|
|
+.vscode/
|
|
|
+.idea/
|
|
|
+*.code-workspace
|
|
|
+
|
|
|
+# OS-specific files
|
|
|
+.DS_Store
|
|
|
+Thumbs.db
|
|
|
+
|
|
|
+# Logs
|
|
|
+*.log
|
|
|
+
|
|
|
+# Byebug command history
|
|
|
+.byebug_history
|
|
|
+
|
|
|
+# Node modules (if any JS tooling)
|
|
|
+node_modules/
|
|
|
+
|
|
|
+# Coverage and test output
|
|
|
+coverage/
|
|
|
+*.profraw
|
|
|
+
|
|
|
+# Miscellaneous
|
|
|
+*.bak
|
|
|
+*.old
|
|
|
+*.orig
|
|
|
+*.rej
|