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
# ---- Rust build artifacts ----------------------------------------------------
# Cargo places compiled crates in `target`. Include the workspace variant to
# cover nested workspaces.
/target/
**/target/
# Rust compiler/cargo intermediates and backups
**/*.rs.bk
*.rlib
*.rmeta
# Native binaries and libraries produced by build scripts or FFI code
*.exe
*.dll
*.lib
*.a
*.so
*.dylib
*.pdb
# ---- Dependency locking ------------------------------------------------------
# Comment out the next line for binary applications where Cargo.lock should be
# versioned. Library crates typically leave it ignored.
Cargo.lock
# ---- Logs & coverage ---------------------------------------------------------
*.log
coverage/
*.profraw
*.profdata
*.gcno
*.gcda
# ---- Tooling / editors -------------------------------------------------------
.idea/
.vscode/
*.code-workspace
.trace/
.cargo/
# ---- OS-specific clutter -----------------------------------------------------
.DS_Store
Thumbs.db