aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/input.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use 2018 edition idiomsLibravatar Dirkjan Ochtman2018-12-081-1/+1
|
* Upgrade to 2018 editionLibravatar Dirkjan Ochtman2018-12-081-1/+1
|
* Fix cargo fmtLibravatar Juan Aguilar Santillana2018-12-071-37/+51
|
* Handle syntax validation during Config instantiationLibravatar Dirkjan Ochtman2018-10-071-20/+0
|
* Add changing delimiters supportLibravatar bott2018-10-051-4/+42
|
* Move find_template_from_path() into ConfigLibravatar Dirkjan Ochtman2018-07-111-2/+5
|
* Remove restrictions to named field structs (fixes #101)Libravatar Dirkjan Ochtman2018-07-041-1/+1
|
* Add some comments to TemplateInput::new() methodLibravatar Dirkjan Ochtman2018-07-021-0/+14
|
* Further simplify code to find parent fieldsLibravatar Dirkjan Ochtman2018-07-021-12/+5
|
* Reorder arms in match for better readabilityLibravatar Dirkjan Ochtman2018-07-021-2/+2
|
* Further improve matching source and ext in TemplateInputLibravatar Dirkjan Ochtman2018-07-021-7/+5
|
* Improve field type determinationLibravatar mash2018-07-021-5/+12
|
* Simplify escape mode determinationLibravatar mash2018-07-021-20/+13
|
* Determine path during source attribute checksLibravatar mash2018-07-021-11/+6
|
* Improve attribute handling code for efficiency and robustnessLibravatar Dirkjan Ochtman2018-06-251-47/+57
|
* Store parent field type in TemplateInputLibravatar Dirkjan Ochtman2018-06-211-0/+15
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-211-8/+12
|
* Inline TemplateMeta into TemplateInputLibravatar Dirkjan Ochtman2018-06-211-23/+20
|
* Let build_template() own the template sourceLibravatar Dirkjan Ochtman2018-06-211-16/+8
|
* Use struct name for inline templatesLibravatar Dirkjan Ochtman2018-06-161-1/+1
|
* Upgrade to syn-0.14 and quote-0.6Libravatar Dirkjan Ochtman2018-05-211-4/+2
|
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-121-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.