hyper icon indicating copy to clipboard operation
hyper copied to clipboard

Apply clippy fixes, except in #[test] code

Open bossmc opened this issue 3 years ago • 2 comments

This also adds a CI stage to run clippy over the project too, hopefully this will prevent degradation.

bossmc avatar Oct 21 '22 21:10 bossmc

Build failure was due to my rustc allowing nightly features by default, I've marked the benches that use #![feature(test)] as also needing #![cfg(feature = nightly)] so they won't get built without the nightly feature enabled.

I've also rebased to pick up the recent master changes.

bossmc avatar Oct 24 '22 19:10 bossmc

I will add it's nice if the project would pass clippy cleanly because it makes playing around with the package easier for a new-comer.

FrankReh avatar Nov 16 '22 16:11 FrankReh