-
Notifications
You must be signed in to change notification settings - Fork 161
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
Bitflags workarounds #695
Comments
It may also be worth exploring alternatives to At a few quick searches though, I didn't find any alternatives that cater to rustix's particular needs, where the flags defined in rustix's code should always be assumed to be a subset of the real flags defined by an external API. |
Bitflags 2.3.3 fixes `-=` to behave the same as `-` and `=` separately, so we can now remove the workarounds. Fixes #695.
Bitflags 2.3.3 fixes `-=` to behave the same as `-` and `=` separately, so we can now remove the workarounds. Fixes #695.
#708 tracks migrating away from bitflags. |
#615 includes subtle workarounds for bitflags 2.x, commented with "Use
=
and-
because-=
behaves differently". When bitflags is updated, remove the workarounds.The text was updated successfully, but these errors were encountered: