initial commit
All checks were successful
CI / fuzz (push) Successful in 1m41s
CI / lint (push) Successful in 16s
CI / test (push) Successful in 22s

This commit is contained in:
Kamal Tufekcic 2026-07-27 10:12:04 +03:00
commit a2922b8bad
59 changed files with 2684583 additions and 0 deletions

18
.gitignore vendored Normal file
View file

@ -0,0 +1,18 @@
# 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/