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
# Build artifacts
/target
**/target
# Editor / tooling
/.idea
/.vscode
*.swp
*.swo
*.log
# Cargo.lock is intentionally not committed for library crates.
# See: https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries
/Cargo.lock
# Local test / coverage output
/coverage
*.profraw
*.profdata
# JUnit XML output from `cargo nextest` / similar; blocks `cargo publish`
# from a clean tree if left in the working directory.
junit.xml
# OS cruft
.DS_Store
Thumbs.db
# Secrets (never commit)
*.pem
*.key
!tests/**/*.pem
!tests/**/*.key
# Agent / planning scratchpad (not part of the crate)
/.sisyphus/
# Local code-review reports (working artifacts; not shipped in the crate)
/docs/reviews/