.gitignore (525B)
1 # Rust build artifacts 2 /target/ 3 /dist/ 4 Cargo.lock 5 6 # Debug and profiling 7 *.pdb 8 *.profdata 9 *.profraw 10 11 # IDE and editor files 12 .vscode/ 13 .idea/ 14 *.swp 15 *.swo 16 *~ 17 .DS_Store 18 19 # Rust-specific 20 **/*.rs.bk 21 *.pdb 22 23 # Project-specific 24 captcha.gif 25 samples/ 26 *.log 27 *.svg 28 *.env 29 .cargo_home/ 30 bot_data/ 31 32 # Temporary files 33 *.tmp 34 *.temp 35 .*.swp 36 37 # System files 38 .DS_Store 39 Thumbs.db 40 41 # Test coverage 42 *.profraw 43 *.profdata 44 coverage/ 45 tarpaulin-report.html 46 47 # Documentation builds 48 /doc/ 49 50 # Configuration (may contain sensitive data) 51 config.toml 52 *.toml.bak