Skip to content

Commit 462de56

Browse files
committed
add .gitignore
Signed-off-by: eric-epsilla <eric@epsilla.com>
0 parents  commit 462de56

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Rust build artifacts
2+
/target/
3+
Cargo.lock
4+
5+
# Generated by Cargo
6+
# will have compiled files and executables
7+
debug/
8+
target/
9+
10+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
11+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
12+
Cargo.lock
13+
14+
# These are backup files generated by rustfmt
15+
**/*.rs.bk
16+
17+
# MSVC Windows builds of rustc may generate these, which store debugging information
18+
*.pdb
19+
20+
# IDE and editor files
21+
.vscode/
22+
.idea/
23+
*.swp
24+
*.swo
25+
*~
26+
.DS_Store
27+
28+
# OS generated files
29+
Thumbs.db
30+
ehthumbs.db
31+
Desktop.ini
32+
33+
# Temporary files
34+
*.tmp
35+
*.temp
36+
.cache/
37+
38+
# Log files
39+
*.log
40+
41+
# Environment variables
42+
.env
43+
.env.local
44+
.env.*.local
45+
46+
# Test artifacts
47+
*.profraw
48+
*.profdata
49+
50+
# Documentation build
51+
/docs/book/
52+
53+
# Backup files
54+
*.orig
55+
*.bak
56+
57+
# Coverage reports
58+
tarpaulin-report.html
59+
cobertura.xml
60+
lcov.info
61+
62+
# Benchmarking
63+
/benches/target/
64+
65+
# Example artifacts (if any compiled examples)
66+
/examples/target/
67+
68+
# Local configuration
69+
config.local.*
70+
71+
# Rust analyzer
72+
rust-project.json

0 commit comments

Comments
 (0)