# Rust and Cargo
# =================
# Ignore build artifacts and caches
/target/



# Ignore Cargo's local registry cache
.cargo/registry/
.cargo/git/

# In case of running secrets scans, ignore the credential file
.cargo/credentials

# IDE and Editor-specific files
# =============================
# VSCode
.vscode/
# Vim
*.swp
*.swo
# JetBrains (RustRover, CLion, etc.)
.idea/

# Operating System files
# ======================
# macOS
.DS_Store
# Windows
Thumbs.db

# Other
# =====
# Log files
*.log
