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
We still have derive crates depending on syn v1, the eco-system is moving on and more and more dependencies we also use in the derive crates now require syn v2.
With #4307 we now have to ignore lints in generated code because we cannot update the dependency since we still need syn v1.
Biggest hurdle seems to be usage of parse_meta(), this SO question could be useful.
The text was updated successfully, but these errors were encountered:
We still have derive crates depending on syn v1, the eco-system is moving on and more and more dependencies we also use in the derive crates now require syn v2.
With #4307 we now have to ignore lints in generated code because we cannot update the dependency since we still need syn v1.
Biggest hurdle seems to be usage of
parse_meta()
, this SO question could be useful.The text was updated successfully, but these errors were encountered: