Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add MSRV checking in CI | Dirkjan Ochtman | 2023-09-29 | 1 | -7/+2 |
| | | | | Bump MSRV to 1.65 for the use of let .. else. | ||||
* | parser: remove re-exports `parser::{node,expr}::*` | René Kijewski | 2023-08-01 | 1 | -1/+3 |
| | |||||
* | Extract askama_parser crate | Dirkjan Ochtman | 2023-07-31 | 1 | -1/+1 |
| | |||||
* | derive: move whitespace conversion into config module | Dirkjan Ochtman | 2023-07-31 | 1 | -1/+11 |
| | |||||
* | derive: move Syntax into parser module | Dirkjan Ochtman | 2023-07-31 | 1 | -34/+11 |
| | |||||
* | Allow delimiters with arbitrary length | René Kijewski | 2023-05-31 | 1 | -16/+94 |
| | |||||
* | Add tests for whitespace argument in template derive proc-macro | Guillaume Gomez | 2023-03-13 | 1 | -0/+30 |
| | |||||
* | Add whitespace argument in template derive proc-macro | Guillaume Gomez | 2023-03-13 | 1 | -16/+31 |
| | |||||
* | Revert "derive: Make Config `'static`" | René Kijewski | 2023-02-21 | 1 | -47/+49 |
| | |||||
* | Replace `toml_edit` with `basic-toml` | René Kijewski | 2023-02-21 | 1 | -1/+1 |
| | |||||
* | Use `toml_edit` instead of `toml` | René Kijewski | 2023-01-30 | 1 | -1/+2 |
| | | | | | Since version 0.6, `toml` is a wrapper around `toml_edit`, and the more basic library already meets our needs. | ||||
* | derive: Make Config `'static` | René Kijewski | 2023-01-30 | 1 | -48/+47 |
| | | | | | | | 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/+3 |
| | |||||
* | chore: remove allow(clippy::disallowed_names) | Dirkjan Ochtman | 2022-11-07 | 1 | -1/+0 |
| | |||||
* | chore: apply clippy suggestions for 1.65 | Dirkjan Ochtman | 2022-11-07 | 1 | -1/+1 |
| | |||||
* | Feature-gate test_whitespace_parsing() | René Kijewski | 2022-06-20 | 1 | -0/+1 |
| | |||||
* | Replace `&Option<Box<T>>` with `Option<&T>` (#696) | René Kijewski | 2022-06-15 | 1 | -1/+1 |
| | | | No need to work on references to references. | ||||
* | Move code generation into askama_derive | René Kijewski | 2022-05-24 | 1 | -0/+536 |