-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (74 loc) · 1.17 KB
/
Copy path.gitignore
File metadata and controls
92 lines (74 loc) · 1.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Rust build artifacts
/target/
**/target/
# Cargo lock file (for libraries, uncomment if you want to include it)
# Cargo.lock is typically committed for binaries but not for libraries
# Cargo.lock
# Generated by Cargo
*.orig
# Remove Cargo.lock from gitignore if this is a binary, rather than a library
# These files should be tracked if building for production
# For more information see: https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
# Backup files generated by editors
*~
*.swp
*.swo
*~
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Linux
*~
.directory
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# IDE / Editor specific files
.vscode/
.idea/
*.iml
*.ipr
*.iws
.project
.classpath
.settings/
.metadata/
*.sublime-*
.vim/
*.code-workspace
# Rust analyzer
/.rust-analyzer/
# Flamegraph profiling
flamegraph.svg
perf.data
perf.data.old
# Benchmarking
criterion/
# Coverage reports
*.profdata
*.profraw
coverage/
tarpaulin-report.html
cobertura.xml
# Debug artifacts
*.pdb
# Test artifacts
tests/tmp/
.test_cache/
# Local environment files
.env
.env.local
.env.*.local
# Logs
*.log
# Other artifacts
**/*.rs.bk
*.exe
*.dll
*.so
*.dylib
*.a
dist/
prebuilt/