Simple overview of project.
Before you begin, ensure you have the following installed:
- Rust: The Rust programming language and its package manager, Cargo.
- Clippy: Rust's linter for catching common mistakes (included with Rust).
- Rustfmt: Rust's code formatter (included with Rust).
To build the project, use:
cargo build
For an optimized release build, use:
cargo build --release
To run the tests, use:
cargo test
To automatically format the code according to Rust's style guidelines, run:
cargo fmt
Run the Rust linter to catch common mistakes and improve code quality:
cargo clippy
Contributions are most welcome! Whether it's code, documentation, or ideas, every contribution makes a difference. Please read the Contributing guide to get started.
This project is licensed under the MIT License. See the LICENSE file for details.