aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow parent templates to be specified as relative paths (fixes #26)Libravatar Dirkjan Ochtman2017-08-061-4/+12
|
* Add support for include blocks (see #25)Libravatar Dirkjan Ochtman2017-08-041-5/+25
|
* Reference askama and std from the global scope (fixes #17)Libravatar Dirkjan Ochtman2017-03-111-8/+8
| | | | | | With this change, importing `std` and `askama` into modules where templates are defined is no longer necessary. `askama::Template` must still be imported in scopes where methods of the `Template` trait are called.
* Remove type parameter defaults from impls (fixes #12)Libravatar Dirkjan Ochtman2017-03-081-1/+3
|
* Use if let to better handle Option typeLibravatar Dirkjan Ochtman2017-03-081-2/+2
|
* Copy type parameters and where clauses (fixes #11)Libravatar Dirkjan Ochtman2017-03-081-9/+39
|
* Inline annotations() helper into write_header()Libravatar Dirkjan Ochtman2017-03-071-14/+9
|
* Extract writing of impl headers in generatorLibravatar Dirkjan Ochtman2017-03-071-10/+14
|
* Use enumerate() for much simpler loop indexes (fixes #10)Libravatar Dirkjan Ochtman2017-03-061-23/+5
|
* Better support for Iterator variants in for loop (fixes #8)Libravatar Dirkjan Ochtman2017-03-061-2/+2
|
* Hide askama_derive dependency inside askama (fixes #2)Libravatar Dirkjan Ochtman2017-03-061-0/+452
|
* Move parser and generator code into askama crateLibravatar Dirkjan Ochtman2017-01-071-111/+0
|
* Add parser and code generator support for Filter expressionsLibravatar Dirkjan Ochtman2017-01-061-0/+7
|
* Separate writing to buffer and node visitation in generatorLibravatar Dirkjan Ochtman2017-01-061-12/+15
|
* Rename askama_codegen to askama_deriveLibravatar Dirkjan Ochtman2017-01-031-0/+101
This appears to be best practice for crates using macros 1.1.