Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Handle syntax validation during Config instantiation | 2018-10-07 | 1 | -20/+0 | |
| | |||||
* | Add changing delimiters support | 2018-10-05 | 1 | -4/+42 | |
| | |||||
* | Move find_template_from_path() into Config | 2018-07-11 | 1 | -2/+5 | |
| | |||||
* | Remove restrictions to named field structs (fixes #101) | 2018-07-04 | 1 | -1/+1 | |
| | |||||
* | Add some comments to TemplateInput::new() method | 2018-07-02 | 1 | -0/+14 | |
| | |||||
* | Further simplify code to find parent fields | 2018-07-02 | 1 | -12/+5 | |
| | |||||
* | Reorder arms in match for better readability | 2018-07-02 | 1 | -2/+2 | |
| | |||||
* | Further improve matching source and ext in TemplateInput | 2018-07-02 | 1 | -7/+5 | |
| | |||||
* | Improve field type determination | 2018-07-02 | 1 | -5/+12 | |
| | |||||
* | Simplify escape mode determination | 2018-07-02 | 1 | -20/+13 | |
| | |||||
* | Determine path during source attribute checks | 2018-07-02 | 1 | -11/+6 | |
| | |||||
* | Improve attribute handling code for efficiency and robustness | 2018-06-25 | 1 | -47/+57 | |
| | |||||
* | Store parent field type in TemplateInput | 2018-06-21 | 1 | -0/+15 | |
| | |||||
* | Fix formatting with cargo fmt | 2018-06-21 | 1 | -8/+12 | |
| | |||||
* | Inline TemplateMeta into TemplateInput | 2018-06-21 | 1 | -23/+20 | |
| | |||||
* | Let build_template() own the template source | 2018-06-21 | 1 | -16/+8 | |
| | |||||
* | Use struct name for inline templates | 2018-06-16 | 1 | -1/+1 | |
| | |||||
* | Upgrade to syn-0.14 and quote-0.6 | 2018-05-21 | 1 | -4/+2 | |
| | |||||
* | Isolate proc-macro dependency to the proc macro | 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. |