-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
63 lines (51 loc) · 1.22 KB
/
Copy path.gitignore
File metadata and controls
63 lines (51 loc) · 1.22 KB
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
54
55
56
57
58
59
60
61
62
63
# build output
/target
**/*.rs.bk
# legacy in-container cargo home; root-owned leftover from a deleted
# parity harness. removable with `sudo rm -rf .cargo-diff-capture`.
/.cargo-diff-capture
# coverage / profiling
/coverage
*.profraw
# local config / secrets
.env
.env.*
!.env.example
# editor / IDE
.vscode
.idea
*.swp
*.swo
# test artifacts
*.mars.local
# cargo-fuzz local data; targets + Cargo.toml are committed
fuzz/corpus
fuzz/artifacts
fuzz/coverage
fuzz/target
# kind-based e2e suite has its own [workspace] and target/ dir; the public
# test dataset gets fetched into target/e2e-fixtures/ at run time
tests/e2e/target
tests/e2e/fixtures
target/e2e-fixtures
target/e2e-output
# parity suite has its own [workspace] and target/ dir; the OSM extract dump
# lives under target/parity-fixtures/ and diff artefacts under target/parity-output/
tests/parity/target
target/parity-fixtures
target/parity-output
# bench harness has its own [workspace] and target/ dir; its Cargo.lock is
# regenerated alongside per-crate cargo runs and is not authoritative.
tests/bench/target
tests/bench/Cargo.lock
# OS junk
.DS_Store
Thumbs.db
# Notes and various
ARCHITECTURE.md
CONCEPT.md
SPEC.md
LAZARUS_PLANNING.md
LAZARUS_PART_2.md
TOMMORROW.md
.local