Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-04-12 | Isolate proc-macro dependency to the proc macro | David Tolnay | 1 | -1/+1 | |
The dependency of askama on askama_shared on syn on libproc_macro used to mean libproc_macro would be dynamically linked into any crate using askama. We want only askama_derive to have a runtime dependency on proc macro. This commit moves all proc macro code from askama_shared into askama_derive so that the askama crate no longer dynamically links libproc_macro. | |||||
2018-01-22 | Cleanup warnings generated by clippy | Dirkjan Ochtman | 1 | -2/+2 | |
2018-01-09 | Upgrade to syn-0.12 and quote-0.4 | Dirkjan Ochtman | 1 | -43/+43 | |
2017-11-21 | Apply suggestions from rustfmt to improve style | Dirkjan Ochtman | 1 | -2/+2 | |
2017-11-07 | Improve error about unsupported annotation key | Dirkjan Ochtman | 1 | -1/+1 | |
2017-09-07 | Infer escaping mode based on template extension | Dirkjan Ochtman | 1 | -3/+21 | |
2017-09-07 | Refactor creation of TemplateMeta value | Dirkjan Ochtman | 1 | -13/+9 | |
2017-09-07 | Make ext attribute mandatory for source-specified templates | Dirkjan Ochtman | 1 | -4/+8 | |
2017-09-06 | Code cleanups as suggested by Clippy | Dirkjan Ochtman | 1 | -1/+1 | |
2017-09-06 | Allow setting an extension with source attributes | Dirkjan Ochtman | 1 | -2/+22 | |
2017-09-06 | Make path and source attributes mutually exclusive | Dirkjan Ochtman | 1 | -0/+6 | |
2017-09-05 | Refactor type handling for attribute parameters | Dirkjan Ochtman | 1 | -8/+8 | |
2017-09-05 | Introduce attribute parameter to disable escaping | Dirkjan Ochtman | 1 | -1/+25 | |
2017-09-05 | Move TemplateInput and related code into separate module | Dirkjan Ochtman | 1 | -55/+8 | |
2017-09-05 | Create new TemplateInput abstraction | Dirkjan Ochtman | 1 | -13/+27 | |
2017-09-05 | Create better abstraction around TemplateMeta type | Dirkjan Ochtman | 1 | -48/+48 | |
2017-09-05 | Pass AST to code generator as reference | Dirkjan Ochtman | 1 | -1/+1 | |
2017-09-05 | Move tightly coupled code from derive to shared crate | Dirkjan Ochtman | 1 | -2/+111 | |
2017-09-04 | Escape all strings with character entities by default (fixes #23) | Dirkjan Ochtman | 1 | -0/+1 | |
2017-09-04 | Move escaping algorithm into a separate module | Dirkjan Ochtman | 1 | -0/+1 | |
2017-08-29 | Export Error type | Anthony Nowell | 1 | -1/+1 | |
2017-08-27 | Move most of the code into new askama_shared crate | Dirkjan Ochtman | 1 | -0/+29 | |
This makes it possible to share code between askama and askama_derive. |