You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this crate requests a version compatible with 1.0.1, but uses the bitflags macro in 2018 style which wasn't supported until bitflags 1.0.4. While running cargo update or starting a new project would bypass the issue, older projects updating their dependencies will see build errors from this crate being unable to find __bitflags. Specifically, I got 41 errors between cannot find macro `__bitflags!` in this scope and various undefined structures defined within bitflags.
Essentially, x86_64 already depends on 1.0.4, but claims to be able to work with 1.0.1 when it really can't.
The text was updated successfully, but these errors were encountered:
Currently, this crate requests a version compatible with 1.0.1, but uses the
bitflags
macro in 2018 style which wasn't supported until bitflags 1.0.4. While runningcargo update
or starting a new project would bypass the issue, older projects updating their dependencies will see build errors from this crate being unable to find__bitflags
. Specifically, I got 41 errors betweencannot find macro `__bitflags!` in this scope
and various undefined structures defined within bitflags.Essentially,
x86_64
already depends on 1.0.4, but claims to be able to work with 1.0.1 when it really can't.The text was updated successfully, but these errors were encountered: