Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Store parent field type in TemplateInput | Dirkjan Ochtman | 2018-06-21 | 1 | -0/+15 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-06-21 | 1 | -8/+12 |
| | |||||
* | Inline TemplateMeta into TemplateInput | Dirkjan Ochtman | 2018-06-21 | 1 | -23/+20 |
| | |||||
* | Let build_template() own the template source | Dirkjan Ochtman | 2018-06-21 | 1 | -16/+8 |
| | |||||
* | Use struct name for inline templates | Dirkjan Ochtman | 2018-06-16 | 1 | -1/+1 |
| | |||||
* | Upgrade to syn-0.14 and quote-0.6 | Dirkjan Ochtman | 2018-05-21 | 1 | -4/+2 |
| | |||||
* | Isolate proc-macro dependency to the proc macro | David Tolnay | 2018-04-12 | 1 | -0/+175 |
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. |