source2rosetta/.gitignore
Kamal Tufekcic a2922b8bad
All checks were successful
CI / fuzz (push) Successful in 1m41s
CI / lint (push) Successful in 16s
CI / test (push) Successful in 22s
initial commit
2026-07-27 10:12:04 +03:00

18 lines
664 B
Text

# Build output (root workspace + the separate fuzz workspace).
/target/
/fuzz/target/
# cargo-fuzz working state. The corpus is REGENERATED (`fuzz/gen_corpus.rs` synthesizes seeds in-process),
# crash artifacts and run logs are per-run, and a fuzzed corpus accumulates mutated engine bytes — which the
# project's clean-room provenance deliberately keeps out of the tree.
/fuzz/corpus/
/fuzz/artifacts/
/fuzz/logs/
# Derive working dirs: `produce --out-dir` and the workflows' fetch/stage dirs, plus the `.seed` bundle
# unpack that lands beside an out-dir. All are per-run and can appear inside a runner's persistent checkout.
/dist/
/in/
/out/
/work/
.seed/