## 📺 PR Description
Fixes#628
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [ ] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
```
Available recipes:
br # Build the project in release mode
build profile='dev' # Build the project with the specified profile (dev by default) [alias: b]
check # Check the project for errors and warnings [alias: c]
clean # Clean up cargo build artifacts
default # List all available commands
fix # Fix linting and formatting errors [alias: f]
format # Format the code using cargo fmt
lint # Lint the code using cargo clippy
release kind='patch' # Publish a new release (major, minor, or patch) [alias: rl]
run # Run the program in debug mode with logs enabled [alias: r]
setup # Setup the project environment for local development
test # Run the tests for the project [alias: t]
update-changelog # Update the project's changelog
update-man # Update the project's manpages [alias: m]
```