Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

48 lines (32 loc) · 1.01 KB

Contribution guidelines

First off, thank you for considering contributing to http-cache.

If your contribution is not straightforward, please first discuss the change you wish to make by creating a new issue or discussion before making the change.

Reporting issues

Before reporting an issue on the issue tracker, please check that it has not already been reported by searching for some related keywords.

Pull requests

Developing

Set up

This is no different from other Rust projects.

git clone https://github.com/06chaynes/http-cache
cd http-cache
cargo test

Useful Commands

  • Run Clippy:

    cargo clippy --all-targets --all-features -- -D warnings
  • Check to see if there are code formatting issues

    cargo fmt --all -- --check
  • Format the code in the project

    cargo fmt --all