Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move code generation into askama_derive | 2022-05-24 | 1 | -256/+0 | |
| | |||||
* | Move configuration into its own module | 2022-05-23 | 1 | -1/+2 | |
| | |||||
* | Add config option to derive macro so we can specify config file location | 2022-04-21 | 1 | -0/+1 | |
| | |||||
* | Parse template derive args outside of TemplateInput::new | 2022-04-21 | 1 | -97/+15 | |
| | |||||
* | Un-"pub" most of askama_shared's internals | 2022-03-23 | 1 | -16/+16 | |
| | | | | | Previously askama_shared exported most of it's internals, so askama_derive could use them. This is not needed anymore. | ||||
* | Take reference to AST ident only once | 2022-02-03 | 1 | -12/+17 | |
| | |||||
* | Replace custom Cow with actual Cow | 2022-02-03 | 1 | -6/+7 | |
| | |||||
* | Update comment in TemplateInput::new() | 2022-01-31 | 1 | -1/+1 | |
| | |||||
* | Tweak attribute parsing some more | 2022-01-13 | 1 | -10/+7 | |
| | |||||
* | Make sure '#[template(…)]' is given exactly once | 2022-01-13 | 1 | -16/+22 | |
| | |||||
* | Rename "meta" in proc_macro parser | 2022-01-13 | 1 | -3/+3 | |
| | |||||
* | Determine Content-Type during compilation | 2022-01-07 | 1 | -0/+6 | |
| | |||||
* | Make TemplateInput::extension() reusable | 2022-01-07 | 1 | -1/+7 | |
| | |||||
* | Unshadow function escaping() | 2022-01-07 | 1 | -3/+3 | |
| | |||||
* | Move extension_to_mime_type() to askama_shared | 2022-01-07 | 1 | -0/+27 | |
| | |||||
* | Omit implicit lifetimes | 2022-01-06 | 1 | -1/+1 | |
| | |||||
* | Don't parse non-template attributes | 2021-11-10 | 1 | -9/+5 | |
| | |||||
* | Stop eliding lifetimes in paths | 2021-07-01 | 1 | -1/+1 | |
| | |||||
* | Changed to allow both path and ext | 2021-03-10 | 1 | -5/+2 | |
| | |||||
* | Added extension tests | 2021-03-10 | 1 | -0/+48 | |
| | |||||
* | Fixed extension to ignore common jinja extensions (fixes #457) | 2021-03-10 | 1 | -1/+11 | |
| | |||||
* | Refactored getting path extension | 2021-03-10 | 1 | -1/+9 | |
| | |||||
* | Fix style suggestion per nightly clippy | 2021-02-28 | 1 | -1/+1 | |
| | |||||
* | Improve error handling (see #368) | 2020-11-02 | 1 | -39/+48 | |
| | |||||
* | Adapt to new warnings and formatting | 2020-02-08 | 1 | -1/+0 | |
| | |||||
* | Move input module into askama_shared | 2020-01-29 | 1 | -0/+221 | |
| | |||||
* | Isolate proc-macro dependency to the proc macro | 2018-04-12 | 1 | -175/+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 clippy | 2018-01-22 | 1 | -2/+2 | |
| | |||||
* | Upgrade to syn-0.12 and quote-0.4 | 2018-01-09 | 1 | -43/+43 | |
| | |||||
* | Apply suggestions from rustfmt to improve style | 2017-11-21 | 1 | -2/+2 | |
| | |||||
* | Improve error about unsupported annotation key | 2017-11-07 | 1 | -1/+1 | |
| | |||||
* | Infer escaping mode based on template extension | 2017-09-07 | 1 | -3/+21 | |
| | |||||
* | Refactor creation of TemplateMeta value | 2017-09-07 | 1 | -13/+9 | |
| | |||||
* | Make ext attribute mandatory for source-specified templates | 2017-09-07 | 1 | -4/+8 | |
| | |||||
* | Code cleanups as suggested by Clippy | 2017-09-06 | 1 | -1/+1 | |
| | |||||
* | Allow setting an extension with source attributes | 2017-09-06 | 1 | -2/+22 | |
| | |||||
* | Make path and source attributes mutually exclusive | 2017-09-06 | 1 | -0/+6 | |
| | |||||
* | Refactor type handling for attribute parameters | 2017-09-05 | 1 | -8/+8 | |
| | |||||
* | Introduce attribute parameter to disable escaping | 2017-09-05 | 1 | -1/+25 | |
| | |||||
* | Move TemplateInput and related code into separate module | 2017-09-05 | 1 | -0/+107 | |