-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.gitignore
More file actions
76 lines (61 loc) · 1.16 KB
/
.gitignore
File metadata and controls
76 lines (61 loc) · 1.16 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
64
65
66
67
68
69
70
71
72
73
74
75
76
# Zig
zig-out/
zig-cache/
.zig-cache/
# OS
.DS_Store
# Nix / direnv
.direnv/
# `nix build` default output symlink
result
result-*
# Python
__pycache__/
# Rust example build artifacts
examples/rust/target/
examples/rust/Cargo.lock
# Editor
*.swp
*~
# Spec tests: tracked in git (avoids wabt version dependency across platforms)
# E2E tests (generated from wasmtime misc_testsuite)
test/e2e/json/
test/e2e/wast/
# Private
private/
.dev/ubuntu-x86_64.md
# WebAssembly spec repos (use ~/Documents/OSS/WebAssembly/ instead)
WASI/
component-model/
design/
exception-handling/
function-references/
gc/
memory64/
multi-memory/
proposals/
relaxed-simd/
/threads/
tool-conventions/
wabt/
*.cwasm
# Clojure
.lsp/
.cpcache/
.clj-kondo/
# Rust build artifacts (bench, thread tests)
bench/simd/rust-blake2/target/
test/threads/*/target/
# Fuzz (generated corpus and artifacts)
fuzz/corpus/
fuzz/crashes/
fuzz/mismatches/
test/fuzz/corpus/
test/fuzz/corpus_wat/
# Overnight fuzz results (machine-generated)
.dev/fuzz-overnight-result.txt
.dev/fuzz-overnight-wat-result.txt
# mdBook output (generated)
docs/book/
# scripts/gate-commit.sh local cache (wasmtime misc_testsuite, etc.)
.cache/