๐งช Development Guide
This document explains how to build, test, and extend GlyphIt.
๐๏ธ Build
cargo build
For a release build:
cargo build --release
๐งช Test
Run all tests with:
cargo test
You can also test individual modules:
cargo test functions::commit
๐ Good convention
Before submitting a PR, please make sure to run:
cargo clippy
๐งฐ Contributing
- Fork the repository
- Create a new feature branch
- Implement your changes
- Submit a PR with detailed description