Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 727 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (22 loc) · 727 Bytes

Contribution Guide

Coding Standards

You must apply the latest rustfmt (formtter) and clippy (linter) as follows:

$ cargo fmt --all
$ cargo clippy

If any warnings are emitted, you need to fix them.

For other coding styles that can not be covered with the above tools, follow Rust's Style Guildelines as much as possible.

Pull Request

Before creating a pull request, please make sure that the unit tests pass in your environment:

$ cargo test

Versioning

This project adopts Semantic Versioning.