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
# Generated by Cargo
/target/
**/*.rs.bk
# Build artifacts
/debug/
release/
# Cargo Dist outputs
/dist/ # If cargo-dist generates output in 'dist' folder
*.zip # ZIP archives
*.tar.gz # Tarball archives
*.sha256 # Checksum files
# Ignore Cargo.lock if the project is a library (optional)
# Uncomment if your project is a library and not a binary
# Cargo.lock
# Dependency directories
/.cargo/
**/Cargo.lock.bak
# Ignore temporary files
*.tmp
*.swp
*.swo
*.DS_Store
*.log
*.bak
*.lock
*.temp
# By default, don't ignore node_modules of your app
node_modules/
**/*.js.map
# Editor-specific files
.idea/
*.iml
*.vs/
.vscode/
*.code-workspace
# MacOS files
.DS_Store
# Windows files
Thumbs.db
*.cabinet
.idea/cache- backup
---