Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

Contributing to Hyper

You want to contribute? You're awesome! Don't know where to start? Check the list of easy issues.

Cargo fmt

cargo fmt --all does not work in hyper. Please use the following commands:

# Mac or Linux
rustfmt --check --edition 2018 $(git ls-files '*.rs')

# Powershell
Get-ChildItem . -Filter "*.rs" -Recurse | foreach { rustfmt --check --edition 2018 $_.FullName }

NOTE: If you are using rust-analyzer, you can add the following two lines in your settings.json to make sure the features get taken into account when checking the project:

 "rust-analyzer.cargo.features": ["full"],
 "rust-analyzer.check.features": ["full"],