-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
73 lines (62 loc) · 1.6 KB
/
.gitignore
File metadata and controls
73 lines (62 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# ------------------------------------------------------------
# Rust / Cargo
# ------------------------------------------------------------
# Cargo build output
/target/
# Rustfmt backup files (rare, but possible)
**/*.rs.bk
# Cargo local config (if you use it per-machine)
.cargo/config.toml
# ------------------------------------------------------------
# Rust tooling caches
# ------------------------------------------------------------
# rust-analyzer / RLS / IDE caches
.rustc_info.json
rust-analyzer*.log
# If you use Bacon
.bacon-locations
# If you use sccache (only if created inside repo)
.sccache/
# ------------------------------------------------------------
# Coverage / profiling / reports (optional)
# ------------------------------------------------------------
coverage/
target/coverage/
lcov.info
*.profraw
*.profdata
*.gcda
*.gcno
*.gcov
# ------------------------------------------------------------
# Logs / temp
# ------------------------------------------------------------
*.log
*.tmp
*.temp
*.swp
*.swo
# ------------------------------------------------------------
# Editor / IDE
# ------------------------------------------------------------
# VS Code (keep workspace config if you want; otherwise ignore whole folder)
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
# JetBrains IDEs
.idea/
*.iml
# ------------------------------------------------------------
# OS noise
# ------------------------------------------------------------
.DS_Store
Thumbs.db
Desktop.ini
$RECYCLE.BIN/
# Rust / Cargo build outputs
target/
**/target/
.github/
.release/