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
# ---- Rust build artifacts ----
/target
**/*.rs.bk
*.pdb
# Note: Cargo.lock IS committed (this crate ships a binary).
# ---- Secrets / credentials (defense in depth; none are committed) ----
.env
.env.*
*.pem
*.key
*.p12
*.pfx
secrets.*
**/credentials
**/credentials.toml
.cargo/credentials*
# ---- framewatch runtime output (default out_dir) and scratch dirs ----
.framewatch/
.fwtest/
.fwsmoke/
# ---- Built binary artifacts in dist/ (rebuild: cargo build --release) ----
# The dist/ docs, manifest, and sample-session ARE tracked; the binary is not.
/dist/*.exe
/dist/*.pdb
# ---- Editor / IDE ----
/.idea/
/.vscode/
*.iml
*.swp
*.swo
*~
# ---- OS cruft ----
.DS_Store
Thumbs.db
desktop.ini