librebar 0.1.0

Opinionated application foundation for Rust CLIs and services
Documentation
# Auto detect text files and perform LF normalization
* text=auto

# Rust sources - always LF
*.rs text eol=lf
*.toml text eol=lf

# Scripts - always LF (shell scripts break with CRLF)
*.sh text eol=lf
*.bash text eol=lf
*.zsh text eol=lf

# Config files - always LF
.editorconfig text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf

# Documentation
*.md text eol=lf
*.txt text eol=lf
LICENSE* text eol=lf

# Graphics
*.svg text eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary

# Archives
*.zip binary
*.tar binary
*.gz binary
*.tgz binary

# Exclude from release archives (crate publish)
# Copier answers file (template state, not project code)
.repo.yml export-ignore
.claude/ export-ignore
.github/ export-ignore
AGENTS.md export-ignore
.markdownlint.yaml export-ignore
.justfile export-ignore
bench-reports/ export-ignore
scripts/ export-ignore
docs/ export-ignore