-
Notifications
You must be signed in to change notification settings - Fork 142
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
Update to MSRV 1.82 in preparation for color #745
Conversation
@@ -32,6 +32,8 @@ | |||
#![allow( | |||
unnameable_types, | |||
clippy::shadow_unrelated, | |||
// Only applies on WASM? | |||
variant_size_differences, |
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.
It is more likely that it is 32 bit targets, not just wasm, like I ran into in Peniko. But some 32 bit targets can't do AtomicU64, and so we don't support building on them all.
Not sure why this was passing before?
Co-authored-by: Kaur Kuut <[email protected]>
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, good work! 🚀
No description provided.