aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Bump version numbers to 0.6.1Libravatar Dirkjan Ochtman2018-04-123-5/+5
|
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-127-79/+75
| | | | | | | | | 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-123-6/+6
|
* Write up some documentation for match blocksLibravatar Dirkjan Ochtman2018-04-121-0/+22
|
* Handle a lack of whitespace after match block (fixes #76)Libravatar Dirkjan Ochtman2018-04-124-8/+24
|
* Improve error message when template is not foundLibravatar Dirkjan Ochtman2018-04-091-1/+1
|
* Upgrade nightly for latest RocketLibravatar Dirkjan Ochtman2018-04-041-2/+2
|
* Upgrade to latest syn and quoteLibravatar Dirkjan Ochtman2018-04-022-3/+3
|
* Fix whitespace handling for include blocks (fixes #69)Libravatar Dirkjan Ochtman2018-04-023-4/+4
|
* `build = "build.rs"` is no longer necessaryLibravatar Paul Woolcock2018-01-292-4/+0
| | | | For all rust versions >= 1.19, cargo will assume `build = "build.rs"` if it sees a `build.rs` file in the same directory as the `Cargo.toml`
* Cleanup warnings generated by clippyLibravatar Dirkjan Ochtman2018-01-223-13/+21
|
* Run Rocket tests on CI for nightly RustLibravatar Dirkjan Ochtman2018-01-221-28/+11
|
* Don't copy trait parameters to type generics (fixes #65)Libravatar Dirkjan Ochtman2018-01-211-2/+3
|
* Use push() instead of push_value() to add type parameters (fixes #65)Libravatar Dirkjan Ochtman2018-01-201-1/+1
| | | | | | push_value() requires taking care of the surrounding punctuation, which push() should handle for us. See this issue reported in syn: https://github.com/dtolnay/syn/issues/338
* infer Content-type from the file extension for iron integrationLibravatar Hajime Fukuda2018-01-194-0/+31
|
* Remove deprecated rustfmt optionsLibravatar Dirkjan Ochtman2018-01-091-2/+0
|
* Upgrade to syn-0.12 and quote-0.4Libravatar Dirkjan Ochtman2018-01-096-113/+76
|
* Limit compatibility to iron < 0.7Libravatar Dirkjan Ochtman2018-01-061-1/+1
|
* relax the version specificationLibravatar Hajime Fukuda2018-01-052-2/+2
|
* Add error_on_line_overflow_comments to rustfmt configLibravatar Dirkjan Ochtman2017-12-251-0/+1
|
* Properly disable rustfmt in parser moduleLibravatar Dirkjan Ochtman2017-12-251-2/+1
|
* Improve/refactor documentation on escapingLibravatar Dirkjan Ochtman2017-12-251-13/+20
|
* Add test case for cross-module inheritanceLibravatar Dirkjan Ochtman2017-12-251-0/+29
|
* Make generated traits public for use in other modules (fixes #61)Libravatar Dirkjan Ochtman2017-12-251-1/+1
|
* Disabling rustfmt locally doesn't work in stable RustLibravatar Dirkjan Ochtman2017-11-211-2/+2
|
* Add rustfmt.toml for style tweaksLibravatar Dirkjan Ochtman2017-11-211-0/+5
|
* Don't restyle code in parser moduleLibravatar Dirkjan Ochtman2017-11-211-0/+4
|
* Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman2017-11-2115-100/+121
|
* Bump version in READMELibravatar Abdullah ibn Nadjo2017-11-211-2/+2
| | | | Update askama version in the README. Makes the example below compile and work
* Limit line length to < 100 charactersLibravatar Dirkjan Ochtman2017-11-071-2/+4
|
* Add some documentation for whitespace suppression helpersLibravatar Dirkjan Ochtman2017-11-071-0/+8
|
* Improve error about unsupported annotation keyLibravatar Dirkjan Ochtman2017-11-071-1/+1
|
* Support matching custom enumsLibravatar Anthony Nowell2017-11-024-7/+81
|
* Make match ref/deref as neededLibravatar Anthony Nowell2017-11-023-1/+57
| | | | | Much of this can be yanked out and made simpler when match-modes lands in stable
* support literals in match armsLibravatar Anthony Nowell2017-11-025-17/+103
|
* support else in match blockLibravatar Anthony Nowell2017-11-021-0/+15
|
* implement basic match functionalityLibravatar Anthony Nowell2017-11-024-1/+119
|
* Make empty string literals workLibravatar Dirkjan Ochtman2017-10-222-3/+3
|
* Tighten up parser code for path expressionsLibravatar Dirkjan Ochtman2017-10-201-4/+2
|
* Add support for array literals (fixes #59)Libravatar Dirkjan Ochtman2017-10-203-0/+42
|
* Add some whitespace to write_call()Libravatar Dirkjan Ochtman2017-10-151-0/+3
|
* Wrap some overly long linesLibravatar Dirkjan Ochtman2017-10-151-2/+5
|
* Add scope when importing macrosLibravatar Lars Erik Rosengren2017-10-154-26/+41
|
* Fix up types for Rocket Responder implsLibravatar Dirkjan Ochtman2017-10-141-2/+2
|
* Remove spurious call to dedent()Libravatar Dirkjan Ochtman2017-10-141-1/+0
|
* Add panic to make sure indentation mismatches are detectedLibravatar Dirkjan Ochtman2017-10-141-0/+3
|
* Add test for path expressions (see #56)Libravatar Dirkjan Ochtman2017-10-041-0/+18
|
* Handle path expressions (fixes #56)Libravatar Dirkjan Ochtman2017-10-042-0/+29
|
* Add a clarifying comment about whitespace in write_call()Libravatar Dirkjan Ochtman2017-10-011-1/+1
|
* Add comment explaining why Extends doesn't need whitespace handlingLibravatar Dirkjan Ochtman2017-10-011-0/+2
|