Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 833 Bytes

CONTRIBUTING.md

File metadata and controls

48 lines (33 loc) · 833 Bytes

Contributing

If you find any bugs or issues when using this crate, feel free to create an issue or open a pull request.

Setting up your development environment

Prerequisites:

  • rust
  • clippy (installed alongside rust if rustup was used for installation)
  • rust-fmt (installed alongside rust if rustup was used for installation)

1. Clone the project:

git clone https://github.com/ev3nvy/rman-rs.git

2. Make the desired changes.

3. Check if the code compiles:

cargo check

4. Run clippy:

cargo clippy

5. Run cargo-fmt

cargo fmt

6. Run tests

cargo test
cargo test --all-features

7. Open a Pull Request