If you would like to have a feature implemented or you noticed a bug, do not hesitate to write an issue in the repository.
Please take into account that this is just a showcase of a Rust webapp with image manipulation. Thus, complexity is usually avoided in favor of clarity.
- Use semantic commits.
- 23 incremental Pull Requests are better than 1 commit of 27,000 lines.
- Before committing, format the code
and search for lint warnings (both
must be checked to pass CI):
cargo fmt cargo clippy
- Tests, benchmarks and documentation are always welcome!
Changes and propositions are considered and welcomed.
- Look up similar issues.
- Write an issue.
- Fork the repository.
# https
git clone https://github.com/carrascomj/dalted.git
# or ssh
git clone git@github.com:carrascomj/dalted.git
- Branch from trunk.
git checkout -b 'feat-incrediblefeature'
- Commit a whole bunch of stuff (this video might be helpful to understand Git).
- Submit a Pull Request with your feature/bug fix.
- Get the Pull Request approved (CI must pass).