-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix compilation on the latest nightly #17
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Was stabilized in 1.54.0.
Fixed other warnings that caused issues with CI. |
Required because of feature names in Bevy turbulence plugin. https://rust-lang.github.io/rust-clippy/master/index.html#redundant_feature_names
Cheers! |
@ErnWong looks like something wrong with your token for test coverage? |
Yeah. If I remember correctly, GitHub Actions doesn't share my test coverage token secret to the |
The feature
const_generics
was spitted toadt_const_params
andgeneric_const_exprs
, see more infor here. So in this PR I replacedconst_generics
withadt_const_params
. But the compiler complains that the feature is incomplete, so I addedincomplete_features
toallow
.Also I removed
extended_key_value_attributes
since it was stabilized in 1.54.0.Fixes #16.