Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-06-21 | Fix formatting with cargo fmt | 1 | -1/+1 | ||
2018-06-04 | Converted error-chain based error to enum based error | 1 | -13/+2 | ||
- now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>` | |||||
2018-04-12 | Isolate proc-macro dependency to the proc macro | 1 | -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. | |||||
2018-01-22 | Cleanup warnings generated by clippy | 1 | -3/+5 | ||
2018-01-09 | Upgrade to syn-0.12 and quote-0.4 | 1 | -0/+2 | ||
2017-11-21 | Apply suggestions from rustfmt to improve style | 1 | -3/+3 | ||
2017-10-15 | Add scope when importing macros | 1 | -10/+12 | ||
2017-09-26 | Rename parse() method to macro_map() | 1 | -1/+1 | ||
2017-09-26 | Improve code compactness | 1 | -5/+2 | ||
2017-09-26 | Add support for importing template files with macros (#51) | 1 | -1/+42 | ||
* Fix review comments for macro imports | |||||
2017-09-05 | Extract generator::State type to clarify structure | 1 | -1/+1 | ||
2017-09-05 | Move TemplateInput and related code into separate module | 1 | -104/+3 | ||
2017-09-05 | Create new TemplateInput abstraction | 1 | -13/+27 | ||
2017-09-05 | Create better abstraction around TemplateMeta type | 1 | -48/+48 | ||
2017-09-05 | Pass AST to code generator as reference | 1 | -1/+1 | ||
2017-09-05 | Move tightly coupled code from derive to shared crate | 1 | -2/+111 | ||
2017-09-04 | Escape all strings with character entities by default (fixes #23) | 1 | -0/+1 | ||
2017-09-04 | Move escaping algorithm into a separate module | 1 | -0/+1 | ||
2017-08-29 | Export Error type | 1 | -1/+1 | ||
2017-08-27 | Move most of the code into new askama_shared crate | 1 | -0/+29 | ||
This makes it possible to share code between askama and askama_derive. |