aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/input.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.