aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Warn about blocks that are nested inside something other than blocksLibravatar Dirkjan Ochtman2018-05-211-1/+6
|
* Upgrade to syn-0.14 and quote-0.6Libravatar Dirkjan Ochtman2018-05-214-24/+26
|
* Add support for nested blocks (fixes #85)Libravatar Dirkjan Ochtman2018-05-201-4/+32
|
* Fix suggestions from clippyLibravatar Dirkjan Ochtman2018-05-161-5/+4
|
* Fix copy/paste error in whitespace handlingLibravatar Dirkjan Ochtman2018-05-141-2/+2
|
* Bump version numbers to 0.6.4Libravatar Dirkjan Ochtman2018-04-271-1/+1
|
* Add support for unary operators (fixes #83)Libravatar Dirkjan Ochtman2018-04-272-1/+18
|
* Bump versions to 0.6.3Libravatar Dirkjan Ochtman2018-04-191-1/+1
|
* Fix issues with expression code interleaving with statements (see #78)Libravatar Dirkjan Ochtman2018-04-191-20/+16
|
* Version bump to 0.6.2Libravatar Dirkjan Ochtman2018-04-181-2/+2
|
* Properly handle whitespace around comments (fixes #79)Libravatar Dirkjan Ochtman2018-04-172-4/+11
|
* Name function call expressions before passing as an argument (fixes #78)Libravatar Dirkjan Ochtman2018-04-171-13/+26
|
* Use a temporary buffer to build expressionsLibravatar Dirkjan Ochtman2018-04-171-88/+104
|
* Bump version numbers to 0.6.1Libravatar Dirkjan Ochtman2018-04-121-2/+2
|
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-125-1/+1860
| | | | | | | | | 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.
* Bump version numbers to 0.6.0Libravatar Dirkjan Ochtman2018-04-121-2/+2
|
* Upgrade to latest syn and quoteLibravatar Dirkjan Ochtman2018-04-021-1/+1
|
* Upgrade to syn-0.12 and quote-0.4Libravatar Dirkjan Ochtman2018-01-092-4/+4
|
* Bump version number to 0.5.0Libravatar Dirkjan Ochtman2017-09-071-2/+2
|
* Bump version number to 0.4.0Libravatar Dirkjan Ochtman2017-09-061-2/+2
|
* 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-279-1291/+8
| | | | This makes it possible to share code between askama and askama_derive.
* Use block implementations in parent as defaults in traitLibravatar Dirkjan Ochtman2017-08-251-11/+3
|
* Allow {% block name %} {% endblock name %}Libravatar Bastien Orivel2017-08-241-0/+1
| | | | This makes converting an app from tera to askama easier.
* Add support for user-defined filtersLibravatar Dirkjan Ochtman2017-08-241-1/+15
|
* Clean up order in Cargo manifestsLibravatar Dirkjan Ochtman2017-08-241-1/+1
|
* Add optional support for RocketLibravatar Dirkjan Ochtman2017-08-232-0/+25
|
* Allow passing extra annotation parameters to impl headersLibravatar Dirkjan Ochtman2017-08-231-13/+28
|
* Optionally implement Iron's Modifier<Response> for templatesLibravatar Dirkjan Ochtman2017-08-232-0/+16
|
* Add support for calling macrosLibravatar Dirkjan Ochtman2017-08-222-13/+44
|
* Refactor parser handling of argumentsLibravatar Dirkjan Ochtman2017-08-221-21/+19
|
* Implement support for macro definition handlingLibravatar Dirkjan Ochtman2017-08-222-8/+59
|
* Rename method call internals for clarityLibravatar Dirkjan Ochtman2017-08-222-5/+5
|
* Change filters to return ResultLibravatar Dirkjan Ochtman2017-08-211-0/+3
|
* Support specifying template source as an attributeLibravatar Dirkjan Ochtman2017-08-161-11/+29
|
* Pass path to code generation as PathLibravatar Dirkjan Ochtman2017-08-162-10/+8
|
* Change find_template_from_path() to take Path as start_at argumentLibravatar Dirkjan Ochtman2017-08-162-7/+7
|
* Simplify relative path handling in find_template_from_path()Libravatar Dirkjan Ochtman2017-08-161-10/+7
|
* 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
|
* Allow separation of variable declaration and defintionLibravatar Dirkjan Ochtman2017-08-162-4/+27
|
* Add support for simple variable definition statementsLibravatar Dirkjan Ochtman2017-08-142-0/+27
|
* Introduce and clean up scopes where necessaryLibravatar Dirkjan Ochtman2017-08-141-0/+6
|
* Assert invariant for SetChain implementationLibravatar Dirkjan Ochtman2017-08-141-0/+1
|
* Use error-chain to create a crate-specific Error typeLibravatar Dirkjan Ochtman2017-08-141-2/+2
|
* Define type askama::Result to use for all rendering methodsLibravatar Dirkjan Ochtman2017-08-141-7/+7
|
* Generate with full path to ResultLibravatar Anthony Nowell2017-08-131-7/+7
|
* Inline scope tracking abstraction againLibravatar Dirkjan Ochtman2017-08-101-24/+6
|
* Keep better track of nested scope through scope chainsLibravatar Dirkjan Ochtman2017-08-101-17/+50
|
* Replace unwrap() with expect() call for parent type findingLibravatar Dirkjan Ochtman2017-08-101-1/+3
|