mrhooray / crc-rs

Rust implementation of CRC(16, 32, 64) with support of various standards
Apache License 2.0
188 stars 49 forks source link

Address clippy lint warnings. #44

Closed zachmse closed 5 years ago

zachmse commented 5 years ago

This pull request updates the code base so that all Clippy lint warnings are resolved, with the exception of the unreadable_literal warning in auto-generated tables. I am unaware of a way to make the code generator format the literals properly. However, as the unreadable_literal lint is just for stylistic purposes, ignoring it has no impact on the functionality or performance of the crate.

All non-benchmark tests have been run and are passing. Additionally, the code has been formatted with rustfmt.