-
Notifications
You must be signed in to change notification settings - Fork 380
0.8 patch: Ensure misc/freetype/* is included in packaged crate #595
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
Conversation
Required for "--features freetype" to work when using via crates.io Closes imgui-rs#594 Closes imgui-rs#589
Hi guys, I'm trying to investigate the cause behind the failing linter from It seems that the linter is throwing errors with the public enum EventLoop<T: 'static> Which are located in It seems the error is due to unused parameters. Is this something that could be solved on imgui-rs's end, Thank you! ZM |
Thanks for looking into that! I only briefly glanced at the lint failures, didn't realise it was coming from winit, interesting.. I wonder if the "error: Please select a feature to build for unix: https://github.com/rust-windowing/winit/blob/v0.26.0/src/event_loop.rs#L32-L33 |
Hmmm, actually, the solution might be even simpler.. The failing clippy command is
from here: imgui-rs/.github/workflows/ci.yml Lines 48 to 57 in 6456066
..which just isn't present in current main branch imgui-rs/.github/workflows/ci.yml Lines 70 to 78 in 18ded1a
So we should probably just remove (as done here) |
Required for "--features freetype" to work when using via crates.io
Closes #594
Closes #589