janhohenheim / foxtrot

The all-in-one Bevy 3D game template for desktop.
Apache License 2.0
630 stars 45 forks source link

Fix clippy warnings #262

Closed TimJentzsch closed 1 year ago

TimJentzsch commented 1 year ago

This PR fixes Clippy CI errors, caused by calling ::default() on a unit struct.

I also removed an extra space from the license key in Cargo.toml. Not sure if this could cause problems, but better safe than sorry!

janhohenheim commented 1 year ago

Tthanks! Do you know why this clippy warning didn't trigger before?

TimJentzsch commented 1 year ago

Do you know why this clippy warning didn't trigger before?

It's likely a newly implemented lint, since we're using the latest nightly in CI we'll occasionally get breaking changes.