ayush99336 1 týždeň pred
rodič
commit
efbd55ecdd
2 zmenil súbory, kde vykonal 46 pridanie a 10 odobranie
  1. 40 10
      .gitignore
  2. 6 0
      Cargo.toml

+ 40 - 10
.gitignore

@@ -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

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "simplecalculator"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]