-
Notifications
You must be signed in to change notification settings - Fork 33
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
Rename clippy feature #137
Conversation
Currently clippy fails with feature = "cargo-clippy"` was replaced by `clippy`
Allow clippy::useless_attribute directly.
Allow clippy::useless_attribute directly.
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.
Thank you! This was long overdue. I took the liberty of cleaning things up one step further.
Do you plan to publish a release containing this and the other changes you made in the last few days? |
Yes, I'm hoping for a release "soonish". I hope to do something about #134 first, but I may have to give up on that. |
* The main branch in git is now `main` rather than `master`. * Update clippy lint usage to get rid of warnings in all code using ructe (PR #137). Thanks @vbradl! * Identified a problem with `Content` parameters sent through intermediate templates, and documented a workaround for it (Issue #134, PR #141). Thanks @drehren and @kornelski. * The `axum` test is mentioned in [`README.md`] (PR #138). Thanks @abd0-omar! * Update `base64` to 0.22.1 and `itertools` dependency to 0.13.0. * MSRV is now 1.61.0.
Currently clippy fails with
This PR renames all instances of
feature = "cargo-clippy"
in templates withfeature = "clippy"