Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-01-02 | Clean up clippy warnings | 1 | -1/+1 | ||
2019-08-14 | Prevent rightward drift in attribute interpretation code | 1 | -42/+51 | ||
2019-08-14 | Switch to syn/quote/proc_macro2 1.0 | 1 | -69/+57 | ||
2019-07-11 | Implement selected clippy recommendations. | 1 | -7/+4 | ||
2019-01-12 | Allow configuration of escape modes | 1 | -9/+18 | ||
2019-01-12 | Specify a trait that handles the output format's escaping | 1 | -33/+15 | ||
2019-01-10 | Add warning of deprecated field '_parent' | 1 | -0/+10 | ||
2018-12-08 | Use 2018 edition idioms | 1 | -1/+1 | ||
2018-12-08 | Upgrade to 2018 edition | 1 | -1/+1 | ||
2018-12-07 | Fix cargo fmt | 1 | -37/+51 | ||
2018-10-07 | Handle syntax validation during Config instantiation | 1 | -20/+0 | ||
2018-10-05 | Add changing delimiters support | 1 | -4/+42 | ||
2018-07-11 | Move find_template_from_path() into Config | 1 | -2/+5 | ||
2018-07-04 | Remove restrictions to named field structs (fixes #101) | 1 | -1/+1 | ||
2018-07-02 | Add some comments to TemplateInput::new() method | 1 | -0/+14 | ||
2018-07-02 | Further simplify code to find parent fields | 1 | -12/+5 | ||
2018-07-02 | Reorder arms in match for better readability | 1 | -2/+2 | ||
2018-07-02 | Further improve matching source and ext in TemplateInput | 1 | -7/+5 | ||
2018-07-02 | Improve field type determination | 1 | -5/+12 | ||
2018-07-02 | Simplify escape mode determination | 1 | -20/+13 | ||
2018-07-02 | Determine path during source attribute checks | 1 | -11/+6 | ||
2018-06-25 | Improve attribute handling code for efficiency and robustness | 1 | -47/+57 | ||
2018-06-21 | Store parent field type in TemplateInput | 1 | -0/+15 | ||
2018-06-21 | Fix formatting with cargo fmt | 1 | -8/+12 | ||
2018-06-21 | Inline TemplateMeta into TemplateInput | 1 | -23/+20 | ||
2018-06-21 | Let build_template() own the template source | 1 | -16/+8 | ||
2018-06-16 | Use struct name for inline templates | 1 | -1/+1 | ||
2018-05-21 | Upgrade to syn-0.14 and quote-0.6 | 1 | -4/+2 | ||
2018-04-12 | Isolate proc-macro dependency to the proc macro | 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 | 1 | -2/+2 | ||
2018-01-09 | Upgrade to syn-0.12 and quote-0.4 | 1 | -43/+43 | ||
2017-11-21 | Apply suggestions from rustfmt to improve style | 1 | -2/+2 | ||
2017-11-07 | Improve error about unsupported annotation key | 1 | -1/+1 | ||
2017-09-07 | Infer escaping mode based on template extension | 1 | -3/+21 | ||
2017-09-07 | Refactor creation of TemplateMeta value | 1 | -13/+9 | ||
2017-09-07 | Make ext attribute mandatory for source-specified templates | 1 | -4/+8 | ||
2017-09-06 | Code cleanups as suggested by Clippy | 1 | -1/+1 | ||
2017-09-06 | Allow setting an extension with source attributes | 1 | -2/+22 | ||
2017-09-06 | Make path and source attributes mutually exclusive | 1 | -0/+6 | ||
2017-09-05 | Refactor type handling for attribute parameters | 1 | -8/+8 | ||
2017-09-05 | Introduce attribute parameter to disable escaping | 1 | -1/+25 | ||
2017-09-05 | Move TemplateInput and related code into separate module | 1 | -55/+8 | ||
2017-09-05 | Create new TemplateInput abstraction | 1 | -13/+27 | ||
2017-09-05 | Create better abstraction around TemplateMeta type | 1 | -48/+48 | ||
2017-09-05 | Pass AST to code generator as reference | 1 | -1/+1 | ||
2017-09-05 | Move tightly coupled code from derive to shared crate | 1 | -2/+111 | ||
2017-09-04 | Escape all strings with character entities by default (fixes #23) | 1 | -0/+1 | ||
2017-09-04 | Move escaping algorithm into a separate module | 1 | -0/+1 | ||
2017-08-29 | Export Error type | 1 | -1/+1 | ||
2017-08-27 | Move most of the code into new askama_shared crate | 1 | -0/+29 | ||
This makes it possible to share code between askama and askama_derive. |