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
It would be nice to have the bulk of askama_derive moved into a normal lib crate. (ie. askama_derive_impl that uses proc_macro2::TokenStream). This would make it easier to profile and benchmark the derive macros, since it would let us use the implementation inside of a binary. Could also let you track performance regressions as part of the CI.
The text was updated successfully, but these errors were encountered:
We used to have this, but @Kijewski didn't like it. 😜 If we flip flop on this we should make sure not to introduce the same problems as before (I believe the previous merge mainly addressed issues with the integration switches).
See also #835, which I think has a bit stronger motivation?
Following #828 and #826.
It would be nice to have the bulk of
askama_derive
moved into a normal lib crate. (ie.askama_derive_impl
that usesproc_macro2::TokenStream
). This would make it easier to profile and benchmark the derive macros, since it would let us use the implementation inside of a binary. Could also let you track performance regressions as part of the CI.The text was updated successfully, but these errors were encountered: