Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "derive: Make Config `'static`" | René Kijewski | 2023-02-21 | 1 | -4/+4 |
| | |||||
* | derive: Make Config `'static` | René Kijewski | 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) | Dirkjan Ochtman | 2023-01-30 | 1 | -4/+4 |
| | |||||
* | Remove support for deprecated `_parent` field | René Kijewski | 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 | René Kijewski | 2022-05-24 | 1 | -0/+255 |
| | |||||
* | Move input module into askama_shared | Dirkjan Ochtman | 2020-01-29 | 1 | -221/+0 |
| | |||||
* | Clean up clippy warnings | Dirkjan Ochtman | 2020-01-02 | 1 | -1/+1 |
| | |||||
* | Prevent rightward drift in attribute interpretation code | Dirkjan Ochtman | 2019-08-14 | 1 | -42/+51 |
| | |||||
* | Switch to syn/quote/proc_macro2 1.0 | Dirkjan Ochtman | 2019-08-14 | 1 | -69/+57 |
| | |||||
* | Implement selected clippy recommendations. | Bardi Harborow | 2019-07-11 | 1 | -7/+4 |
| | |||||
* | Allow configuration of escape modes | Dirkjan Ochtman | 2019-01-12 | 1 | -9/+18 |
| | |||||
* | Specify a trait that handles the output format's escaping | Dirkjan Ochtman | 2019-01-12 | 1 | -33/+15 |
| | |||||
* | Add warning of deprecated field '_parent' | Juan Aguilar Santillana | 2019-01-10 | 1 | -0/+10 |
| | |||||
* | Use 2018 edition idioms | Dirkjan Ochtman | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Upgrade to 2018 edition | Dirkjan Ochtman | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Fix cargo fmt | Juan Aguilar Santillana | 2018-12-07 | 1 | -37/+51 |
| | |||||
* | Handle syntax validation during Config instantiation | Dirkjan Ochtman | 2018-10-07 | 1 | -20/+0 |
| | |||||
* | Add changing delimiters support | bott | 2018-10-05 | 1 | -4/+42 |
| | |||||
* | Move find_template_from_path() into Config | Dirkjan Ochtman | 2018-07-11 | 1 | -2/+5 |
| | |||||
* | Remove restrictions to named field structs (fixes #101) | Dirkjan Ochtman | 2018-07-04 | 1 | -1/+1 |
| | |||||
* | Add some comments to TemplateInput::new() method | Dirkjan Ochtman | 2018-07-02 | 1 | -0/+14 |
| | |||||
* | Further simplify code to find parent fields | Dirkjan Ochtman | 2018-07-02 | 1 | -12/+5 |
| | |||||
* | Reorder arms in match for better readability | Dirkjan Ochtman | 2018-07-02 | 1 | -2/+2 |
| | |||||
* | Further improve matching source and ext in TemplateInput | Dirkjan Ochtman | 2018-07-02 | 1 | -7/+5 |
| | |||||
* | Improve field type determination | mash | 2018-07-02 | 1 | -5/+12 |
| | |||||
* | Simplify escape mode determination | mash | 2018-07-02 | 1 | -20/+13 |
| | |||||
* | Determine path during source attribute checks | mash | 2018-07-02 | 1 | -11/+6 |
| | |||||
* | Improve attribute handling code for efficiency and robustness | Dirkjan Ochtman | 2018-06-25 | 1 | -47/+57 |
| | |||||
* | Store parent field type in TemplateInput | Dirkjan Ochtman | 2018-06-21 | 1 | -0/+15 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-06-21 | 1 | -8/+12 |
| | |||||
* | Inline TemplateMeta into TemplateInput | Dirkjan Ochtman | 2018-06-21 | 1 | -23/+20 |
| | |||||
* | Let build_template() own the template source | Dirkjan Ochtman | 2018-06-21 | 1 | -16/+8 |
| | |||||
* | Use struct name for inline templates | Dirkjan Ochtman | 2018-06-16 | 1 | -1/+1 |
| | |||||
* | Upgrade to syn-0.14 and quote-0.6 | Dirkjan Ochtman | 2018-05-21 | 1 | -4/+2 |
| | |||||
* | Isolate proc-macro dependency to the proc macro | David Tolnay | 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. |