26 lines
743 B
Plaintext
26 lines
743 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
|
|
# These are tracked once they exist (kept for reproducible builds):
|
|
# Cargo.lock for the workspace
|
|
|
|
# Handoff/working artifacts, not source: each crate's own DECISIONS.md and
|
|
# README.md are the source of truth; these root-level files are a local
|
|
# convenience concatenation and a planning briefing, not committed.
|
|
/ALL_DECISIONS_AND_READMES.md
|
|
/HANDOFF.md
|
|
|
|
# The render-svg demo writes its SVG here by convention
|
|
# (`cargo run -p epiphany-render-svg --example render_fixture -- … > out.svg`);
|
|
# it is a working artifact, not source.
|
|
/out.svg
|
|
|
|
# LaTeX build intermediates (the spec PDF itself is tracked; these are not).
|
|
spec/*.aux
|
|
spec/*.fdb_latexmk
|
|
spec/*.fls
|
|
spec/*.log
|
|
spec/*.out
|
|
spec/*.toc
|
|
spec/*.xdv
|