aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Clean up clippy warningsLibravatar Dirkjan Ochtman2020-01-024-17/+17
|
* Migrate to non-macro combinatorsLibravatar Dirkjan Ochtman2019-11-111-541/+709
|
* Upgrade to nom 5Libravatar Dirkjan Ochtman2019-11-112-95/+93
|
* Moved no-receiver size_hint method to a separate trait (#270)Libravatar jbg2019-10-281-1/+16
|
* Remove use of deprecated nom macroLibravatar Dirkjan Ochtman2019-10-091-1/+1
|
* Add support for boolean literalsLibravatar Dave Poulter2019-10-082-0/+13
|
* Prevent rightward drift in attribute interpretation codeLibravatar Dirkjan Ochtman2019-08-141-42/+51
|
* Switch to syn/quote/proc_macro2 1.0Libravatar Dirkjan Ochtman2019-08-142-72/+60
|
* Implement selected clippy recommendations.Libravatar Bardi Harborow2019-07-113-9/+6
|
* Simplify parser with nom's list combinatorsLibravatar James Gilles2019-05-041-121/+44
|
* WIP: Add raw blockLibravatar Pavel Fokin2019-04-182-1/+27
|
* Allow Rust macro calls in more places (see #226)Libravatar Dirkjan Ochtman2019-03-181-2/+2
|
* Create heritage for extends-only templates (fixes #224)Libravatar Dirkjan Ochtman2019-03-181-1/+1
|
* Simplify actix-web implementationsLibravatar Dirkjan Ochtman2019-02-201-5/+2
|
* Allow referencing self as a variable (fixes #207)Libravatar Dirkjan Ochtman2019-02-201-1/+1
|
* Fix formatting for 1.32.0Libravatar Dirkjan Ochtman2019-02-181-6/+12
|
* Fully qualified ResultLibravatar Steven Pease2019-02-151-1/+1
|
* Bump versions in anticipation of 0.8.0 releaseLibravatar Dirkjan Ochtman2019-01-171-1/+1
|
* Provide size_hint() method on Template (fixes #181)Libravatar Dirkjan Ochtman2019-01-121-37/+99
|
* Allow configuration of escape modesLibravatar Dirkjan Ochtman2019-01-122-11/+20
|
* Specify a trait that handles the output format's escapingLibravatar Dirkjan Ochtman2019-01-122-40/+27
|
* Inject template file into generated source as bytes.Libravatar Maarten de Vries2019-01-111-1/+25
| | | | | | This is meant to allow the compiler to understand the dependency between the generated code and the template source. It removes the need for a build script.
* Add warning of deprecated field '_parent'Libravatar Juan Aguilar Santillana2019-01-101-0/+10
|
* Fix loop.lastLibravatar yossyJ2019-01-081-7/+7
|
* Add support for loop.lastLibravatar yossyJ2019-01-081-3/+12
|
* Allow trailing commas in tuples (#188)Libravatar yossyJ2019-01-081-0/+1
|
* Add support for #![feature(non_ascii_idents)]Libravatar yossyJ2019-01-081-2/+7
|
* Add support for tupleLibravatar yossyJ2019-01-042-13/+55
|
* fix rust macro argumentsLibravatar Juan Aguilar Santillana2018-12-132-10/+63
|
* Allow using brackets for enums in `match`Libravatar mcarton2018-12-122-14/+85
|
* Implement `IntoResponse` for `Template`, allowing them to be used in ↵Libravatar Kellen Frodelius-Fujimoto2018-12-102-0/+20
| | | | `gotham` handlers.
* Use 2018 edition idiomsLibravatar Dirkjan Ochtman2018-12-084-9/+6
|
* Upgrade to 2018 editionLibravatar Dirkjan Ochtman2018-12-085-13/+14
|
* Fix cargo fmtLibravatar Juan Aguilar Santillana2018-12-073-46/+61
|
* Fix generated code styleLibravatar bott2018-11-131-1/+1
|
* Fix write expression wrapperLibravatar bott2018-11-111-8/+5
|
* Code style tweaksLibravatar Dirkjan Ochtman2018-11-111-2/+2
|
* Use early returns to prevent deep indentationLibravatar Dirkjan Ochtman2018-11-111-59/+59
|
* Add write! named argumentsLibravatar bott2018-11-111-7/+24
|
* Simplify whitespace handling in expression code generationLibravatar Dirkjan Ochtman2018-11-071-3/+1
|
* Clean up unused featuresLibravatar Dirkjan Ochtman2018-11-071-4/+3
|
* Fix generated code formatLibravatar Tomas2018-11-071-6/+9
|
* Send debug output to stderr instead of stdoutLibravatar Dirkjan Ochtman2018-11-051-2/+2
|
* use UFCS in derived codeLibravatar Yusuke Sasaki2018-11-041-2/+4
|
* Improve bench with writable buffer for generate format string of write! argumentLibravatar bott2018-10-291-52/+111
|
* Improve bench with literals buffer for optimize ws writerLibravatar bott2018-10-271-15/+22
|
* Improve bench reducing the number of calls to writer.write_strLibravatar bott2018-10-261-4/+13
|
* Take reference of unescaped expressions directly (fixes #132)Libravatar Dirkjan Ochtman2018-10-201-3/+2
|
* Bump version number to 0.8.0 for API changeLibravatar Dirkjan Ochtman2018-10-121-1/+1
|
* make `Template::extension()` staticLibravatar Yusuke Sasaki2018-10-121-1/+1
| | | | | It is useful for calculating the media type without instantiating the context value.