aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use Config type for build script helperLibravatar Dirkjan Ochtman2018-07-101-3/+3
|
* Move Config struct to askama_shared crate rootLibravatar Dirkjan Ochtman2018-07-101-2/+39
|
* Add partial support for multiple template dirsLibravatar mash2018-07-101-1/+3
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-211-1/+1
|
* Converted error-chain based error to enum based errorLibravatar Philipp Korber2018-06-041-13/+2
| | | | | | | - now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>`
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-121-72/+0
| | | | | | | | | 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.
* Cleanup warnings generated by clippyLibravatar Dirkjan Ochtman2018-01-221-3/+5
|
* Upgrade to syn-0.12 and quote-0.4Libravatar Dirkjan Ochtman2018-01-091-0/+2
|
* Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman2017-11-211-3/+3
|
* Add scope when importing macrosLibravatar Lars Erik Rosengren2017-10-151-10/+12
|
* Rename parse() method to macro_map()Libravatar Dirkjan Ochtman2017-09-261-1/+1
|
* Improve code compactnessLibravatar Dirkjan Ochtman2017-09-261-5/+2
|
* Add support for importing template files with macros (#51)Libravatar larros2017-09-261-1/+42
| | | | * Fix review comments for macro imports
* Extract generator::State type to clarify structureLibravatar Dirkjan Ochtman2017-09-051-1/+1
|
* Move TemplateInput and related code into separate moduleLibravatar Dirkjan Ochtman2017-09-051-104/+3
|
* Create new TemplateInput abstractionLibravatar Dirkjan Ochtman2017-09-051-13/+27
|
* Create better abstraction around TemplateMeta typeLibravatar Dirkjan Ochtman2017-09-051-48/+48
|
* Pass AST to code generator as referenceLibravatar Dirkjan Ochtman2017-09-051-1/+1
|
* Move tightly coupled code from derive to shared crateLibravatar Dirkjan Ochtman2017-09-051-2/+111
|
* Escape all strings with character entities by default (fixes #23)Libravatar Dirkjan Ochtman2017-09-041-0/+1
|
* Move escaping algorithm into a separate moduleLibravatar Dirkjan Ochtman2017-09-041-0/+1
|
* Export Error typeLibravatar Anthony Nowell2017-08-291-1/+1
|
* Move most of the code into new askama_shared crateLibravatar Dirkjan Ochtman2017-08-271-0/+29
This makes it possible to share code between askama and askama_derive.