-
Notifications
You must be signed in to change notification settings - Fork 28
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
tiny_skia_render: Fix unused qualifications. #62
tiny_skia_render: Fix unused qualifications. #62
Conversation
This is a bit of a head scratcher. The merge queue CI did git fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +94c5d78214b0a2c50d0c3e11d700a0e38080e7b9:refs/remotes/origin/gh-readonly-queue/main/pr-55-c982ffc22e861f66419b43b7323fea3754085c6d which seems to correctly already have this lint. However it didn't trigger during the clippy run. 😕 |
This happened in my multi-crate PR because that leaves |
Well the thing is that the following fails locally for me: git checkout 94c5d78214b0a2c50d0c3e11d700a0e38080e7b9
cargo hack clippy -p tiny_skia_render --locked --optional-deps --each-feature Which is what the merge queue CI allegedly did. |
Well, on a related topic maybe, I was getting a warning about the unused |
Yeah, I had a bunch of issues with CI checks not matching local checks with my PRs. I'm not entirely convinced by "cargo hack", although manually writing out feature combinations isn't great either. |
This reverts commit 49e055a. Revert "Add automatic CI support for packages without the `std` feature. (linebender#63)" This reverts commit eb2c68a. Revert "tiny_skia_render: Fix unused qualifications. (linebender#62)" This reverts commit f7f339b.
Manually maintaining the package + feature matrix is untenable. Cargo hack has served us well. I have found some issues, but its maintainer is very responsive and accepted my patches. So if you find any issues with cargo hack, definitely let me know. As for this issue right here, it has nothing to do with cargo hack. Turns out that this |
No description provided.