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
# === Rust build and dependency artifacts ===
/target/
/Cargo.lock
# === Backup and temporary files ===
*.log
*.tmp
*.bak
*.swp
*.swo
*~
# === VS Code ===
.history/
*.code-workspace
# === DevContainer / Podman ===
.devcontainer/.env
.devcontainer/local.env
.devcontainer/docker-compose.override.yml
# Podman volumes or cache (if any)
podman-volume/
podman-cache/
# === Environment files ===
.env
.env.*
!env.example
# === OS / Editor ===
.DS_Store
Thumbs.db
# === Tests / Coverage ===
/coverage/
/*.profraw
/*.profdata
# === Rust tooling ===
/rust-toolchain.toml
/.cargo/.package-cache
/.cargo/registry/
/.cargo/git/
# === Build outputs for documentation ===
/doc/
/book/
# === Logs / temp files from dev scripts ===
*.out
*.log
/tmp/