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
For a proc macro crate, migration to 2021 Edition is important, because the code wrapped inside the html macro will follow macro crate's edition, instead of parent project's edition. This in turn will affect e.g. resolution for array iterator, which can appear quite often.
The internal of typed-html isn't trivial to migrate to 2021 Editon, unfortunately, because it heavily uses dyn-less trait object that's obscured by internal macro. I have made a dirty patch for my own use wwylele@ec33ad5
The text was updated successfully, but these errors were encountered:
For a proc macro crate, migration to 2021 Edition is important, because the code wrapped inside the html macro will follow macro crate's edition, instead of parent project's edition. This in turn will affect e.g. resolution for array iterator, which can appear quite often.
The internal of typed-html isn't trivial to migrate to 2021 Editon, unfortunately, because it heavily uses
dyn
-less trait object that's obscured by internal macro. I have made a dirty patch for my own use wwylele@ec33ad5The text was updated successfully, but these errors were encountered: