Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unbreak reading config from default location | 2023-12-18 | 1 | -5/+5 | |
| | | | | | | I broke this in 2a4d58cbb2033114890415c98a61e730185d1f83 due to refactoring for better internal abstractions in askama_derive. We also don't currently have any tests for the default config path. | ||||
* | add support for svg file extension | 2023-11-09 | 1 | -1/+4 | |
| | |||||
* | Build Config from TemplateArgs | 2023-11-01 | 1 | -7/+11 | |
| | |||||
* | Reorganize TemplateArgs and TemplateInput structure | 2023-11-01 | 1 | -21/+21 | |
| | |||||
* | Inline some logic into find_used_templates() | 2023-11-01 | 1 | -1/+5 | |
| | |||||
* | Attach find_used_templates() to TemplateInput | 2023-11-01 | 1 | -2/+44 | |
| | |||||
* | Move TemplateArgs into input module | 2023-11-01 | 1 | -5/+132 | |
| | |||||
* | Extract askama_parser crate | 2023-07-31 | 1 | -1/+1 | |
| | |||||
* | derive: move Syntax into parser module | 2023-07-31 | 1 | -1/+2 | |
| | |||||
* | Revert "derive: Make Config `'static`" | 2023-02-21 | 1 | -4/+4 | |
| | |||||
* | derive: Make Config `'static` | 2023-01-30 | 1 | -4/+4 | |
| | | | | | | | The configuration is made `'static`, because `toml` and `toml_edit` both needs to implement serde's `DeserializeOwned` by now. We allocate the strings once per template, so it is very unlikely that this change will have any measurable impact, neither in compile time nor RAM usage. | ||||
* | Apply clippy suggestions for 1.67 (#769) | 2023-01-30 | 1 | -4/+4 | |
| | |||||
* | Remove support for deprecated `_parent` field | 2022-07-25 | 1 | -25/+1 | |
| | | | | | | The support for the magic `_parent` field is deprecated since v0.8.0 or issue #180. It's bothersome to keep this feature alive, when no-one should be using it for 3 years. | ||||
* | Move code generation into askama_derive | 2022-05-24 | 1 | -0/+255 | |
| | |||||
* | Move input module into askama_shared | 2020-01-29 | 1 | -221/+0 | |
| | |||||
* | Clean up clippy warnings | 2020-01-02 | 1 | -1/+1 | |
| | |||||
* | Prevent rightward drift in attribute interpretation code | 2019-08-14 | 1 | -42/+51 | |
| | |||||
* | Switch to syn/quote/proc_macro2 1.0 | 2019-08-14 | 1 | -69/+57 | |
| | |||||
* | Implement selected clippy recommendations. | 2019-07-11 | 1 | -7/+4 | |
| | |||||
* | Allow configuration of escape modes | 2019-01-12 | 1 | -9/+18 | |
| | |||||
* | Specify a trait that handles the output format's escaping | 2019-01-12 | 1 | -33/+15 | |
| | |||||
* | Add warning of deprecated field '_parent' | 2019-01-10 | 1 | -0/+10 | |
| | |||||
* | Use 2018 edition idioms | 2018-12-08 | 1 | -1/+1 | |
| | |||||
* | Upgrade to 2018 edition | 2018-12-08 | 1 | -1/+1 | |
| | |||||
* | Fix cargo fmt | 2018-12-07 | 1 | -37/+51 | |
| | |||||
* | Handle syntax validation during Config instantiation | 2018-10-07 | 1 | -20/+0 | |
| | |||||
* | Add changing delimiters support | 2018-10-05 | 1 | -4/+42 | |
| | |||||
* | Move find_template_from_path() into Config | 2018-07-11 | 1 | -2/+5 | |
| | |||||
* | Remove restrictions to named field structs (fixes #101) | 2018-07-04 | 1 | -1/+1 | |
| | |||||
* | Add some comments to TemplateInput::new() method | 2018-07-02 | 1 | -0/+14 | |
| | |||||
* | Further simplify code to find parent fields | 2018-07-02 | 1 | -12/+5 | |
| | |||||
* | Reorder arms in match for better readability | 2018-07-02 | 1 | -2/+2 | |
| | |||||
* | Further improve matching source and ext in TemplateInput | 2018-07-02 | 1 | -7/+5 | |
| | |||||
* | Improve field type determination | 2018-07-02 | 1 | -5/+12 | |
| | |||||
* | Simplify escape mode determination | 2018-07-02 | 1 | -20/+13 | |
| | |||||
* | Determine path during source attribute checks | 2018-07-02 | 1 | -11/+6 | |
| | |||||
* | Improve attribute handling code for efficiency and robustness | 2018-06-25 | 1 | -47/+57 | |
| | |||||
* | Store parent field type in TemplateInput | 2018-06-21 | 1 | -0/+15 | |
| | |||||
* | Fix formatting with cargo fmt | 2018-06-21 | 1 | -8/+12 | |
| | |||||
* | Inline TemplateMeta into TemplateInput | 2018-06-21 | 1 | -23/+20 | |
| | |||||
* | Let build_template() own the template source | 2018-06-21 | 1 | -16/+8 | |
| | |||||
* | Use struct name for inline templates | 2018-06-16 | 1 | -1/+1 | |
| | |||||
* | Upgrade to syn-0.14 and quote-0.6 | 2018-05-21 | 1 | -4/+2 | |
| | |||||
* | Isolate proc-macro dependency to the proc macro | 2018-04-12 | 1 | -0/+175 | |
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. |