Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use 2018 edition idioms | Dirkjan Ochtman | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Upgrade to 2018 edition | Dirkjan Ochtman | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Fix cargo fmt | Juan Aguilar Santillana | 2018-12-07 | 1 | -37/+51 |
| | |||||
* | Handle syntax validation during Config instantiation | Dirkjan Ochtman | 2018-10-07 | 1 | -20/+0 |
| | |||||
* | Add changing delimiters support | bott | 2018-10-05 | 1 | -4/+42 |
| | |||||
* | Move find_template_from_path() into Config | Dirkjan Ochtman | 2018-07-11 | 1 | -2/+5 |
| | |||||
* | Remove restrictions to named field structs (fixes #101) | Dirkjan Ochtman | 2018-07-04 | 1 | -1/+1 |
| | |||||
* | Add some comments to TemplateInput::new() method | Dirkjan Ochtman | 2018-07-02 | 1 | -0/+14 |
| | |||||
* | Further simplify code to find parent fields | Dirkjan Ochtman | 2018-07-02 | 1 | -12/+5 |
| | |||||
* | Reorder arms in match for better readability | Dirkjan Ochtman | 2018-07-02 | 1 | -2/+2 |
| | |||||
* | Further improve matching source and ext in TemplateInput | Dirkjan Ochtman | 2018-07-02 | 1 | -7/+5 |
| | |||||
* | Improve field type determination | mash | 2018-07-02 | 1 | -5/+12 |
| | |||||
* | Simplify escape mode determination | mash | 2018-07-02 | 1 | -20/+13 |
| | |||||
* | Determine path during source attribute checks | mash | 2018-07-02 | 1 | -11/+6 |
| | |||||
* | Improve attribute handling code for efficiency and robustness | Dirkjan Ochtman | 2018-06-25 | 1 | -47/+57 |
| | |||||
* | 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. |