- Add workspace Cargo.toml with members - Add .gitignore for Rust projects
22 lines
206 B
Plaintext
22 lines
206 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/target/
|
|
|
|
# Cargo lock (optional - can be committed for binaries)
|
|
# Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.orig
|