aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use `syn::Error::to_compile_error` and add trybuild ui test (#374)Libravatar msrd02020-11-021-4/+5
|
* Improve error handling (see #368)Libravatar Dirkjan Ochtman2020-11-021-18/+30
|
* Add mendes integrationLibravatar Dirkjan Ochtman2020-07-281-0/+1
|
* alphabetize frameworksLibravatar Jacob Rothstein2020-07-141-1/+1
|
* askama tideLibravatar Jacob Rothstein2020-07-141-0/+1
|
* Move code generation into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-142/+12
|
* Move input module into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-2/+1
|
* Move parser into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-5/+1
|
* Clean up clippy warningsLibravatar Dirkjan Ochtman2020-01-021-0/+1
|
* Create heritage for extends-only templates (fixes #224)Libravatar Dirkjan Ochtman2019-03-181-1/+1
|
* Use 2018 edition idiomsLibravatar Dirkjan Ochtman2018-12-081-5/+2
|
* Upgrade to 2018 editionLibravatar Dirkjan Ochtman2018-12-081-5/+5
|
* Fix cargo fmtLibravatar Juan Aguilar Santillana2018-12-071-1/+2
|
* Send debug output to stderr instead of stdoutLibravatar Dirkjan Ochtman2018-11-051-2/+2
|
* Improve variable name to better reflect its typeLibravatar Dirkjan Ochtman2018-10-071-2/+2
|
* Add changing delimiters supportLibravatar bott2018-10-051-5/+8
|
* Update formatting for rust 1.29.0 rustfmtLibravatar Dirkjan Ochtman2018-09-141-2/+1
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-09-021-1/+2
|
* Prepare Heritage before Generator instantiationLibravatar Dirkjan Ochtman2018-07-251-1/+39
|
* Move get_template_source() into askama_deriveLibravatar Dirkjan Ochtman2018-07-111-4/+32
|
* Move find_template_from_path() into ConfigLibravatar Dirkjan Ochtman2018-07-111-11/+11
|
* Remove restrictions to named field structs (fixes #101)Libravatar Dirkjan Ochtman2018-07-041-4/+0
|
* Fix unused import warningLibravatar mash2018-07-021-1/+1
|
* Only pass path to contextLibravatar mash2018-07-021-5/+5
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-221-4/+6
|
* Flatten inherited blocks for code generationLibravatar Dirkjan Ochtman2018-06-211-21/+10
|
* Store extends path in ContextLibravatar Dirkjan Ochtman2018-06-211-12/+11
|
* Use Contexts to keep per-template stateLibravatar Dirkjan Ochtman2018-06-211-5/+127
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-211-2/+2
|
* Inline TemplateMeta into TemplateInputLibravatar Dirkjan Ochtman2018-06-211-3/+3
|
* Let build_template() own the template sourceLibravatar Dirkjan Ochtman2018-06-211-2/+9
|
* Rename variable for consistencyLibravatar Dirkjan Ochtman2018-06-211-5/+5
|
* Handle imports as part of code generationLibravatar Dirkjan Ochtman2018-06-151-41/+1
|
* Upgrade to syn-0.14 and quote-0.6Libravatar Dirkjan Ochtman2018-05-211-1/+1
|
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-121-1/+71
| | | | | | | | | 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.
* Upgrade to syn-0.12 and quote-0.4Libravatar Dirkjan Ochtman2018-01-091-3/+3
|
* Move tightly coupled code from derive to shared crateLibravatar Dirkjan Ochtman2017-09-051-111/+1
|
* Move most of the code into new askama_shared crateLibravatar Dirkjan Ochtman2017-08-271-11/+5
| | | | This makes it possible to share code between askama and askama_derive.
* Support specifying template source as an attributeLibravatar Dirkjan Ochtman2017-08-161-11/+29
|
* Pass path to code generation as PathLibravatar Dirkjan Ochtman2017-08-161-1/+3
|
* Use reference into AST for template path instead of cloningLibravatar Dirkjan Ochtman2017-08-161-4/+4
|
* Use enum for print option valueLibravatar Dirkjan Ochtman2017-08-161-5/+26
|
* Reorganize code order in askama_derive modulesLibravatar Dirkjan Ochtman2017-08-081-34/+34
|
* Use one way of finding templates on the pathLibravatar Dirkjan Ochtman2017-08-061-1/+2
|
* Merge handling of trailing newline into get_template_source()Libravatar Dirkjan Ochtman2017-08-061-4/+1
|
* Copy type parameters and where clauses (fixes #11)Libravatar Dirkjan Ochtman2017-03-081-0/+1
|
* Panic with better message if template attribute is not found (fixes #3)Libravatar Dirkjan Ochtman2017-03-071-1/+8
|
* Hide askama_derive dependency inside askama (fixes #2)Libravatar Dirkjan Ochtman2017-03-061-2/+71
|
* Move template metadata processing into askama crateLibravatar Dirkjan Ochtman2017-02-171-31/+1
|
* Define struct to represent template metadataLibravatar Dirkjan Ochtman2017-02-171-9/+23
|