aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/config.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make API more idiomaticLibravatar Dirkjan Ochtman2023-12-181-3/+3
|
* add support for svg file extensionLibravatar Marvin Jütte2023-11-091-2/+5
|
* Cleanup imports a bitLibravatar Dirkjan Ochtman2023-11-011-1/+0
|
* Add MSRV checking in CILibravatar Dirkjan Ochtman2023-09-291-7/+2
| | | | Bump MSRV to 1.65 for the use of let .. else.
* parser: remove re-exports `parser::{node,expr}::*`Libravatar René Kijewski2023-08-011-1/+3
|
* Extract askama_parser crateLibravatar Dirkjan Ochtman2023-07-311-1/+1
|
* derive: move whitespace conversion into config moduleLibravatar Dirkjan Ochtman2023-07-311-1/+11
|
* derive: move Syntax into parser moduleLibravatar Dirkjan Ochtman2023-07-311-34/+11
|
* Allow delimiters with arbitrary lengthLibravatar René Kijewski2023-05-311-16/+94
|
* Add tests for whitespace argument in template derive proc-macroLibravatar Guillaume Gomez2023-03-131-0/+30
|
* Add whitespace argument in template derive proc-macroLibravatar Guillaume Gomez2023-03-131-16/+31
|
* Revert "derive: Make Config `'static`"Libravatar René Kijewski2023-02-211-47/+49
|
* Replace `toml_edit` with `basic-toml`Libravatar René Kijewski2023-02-211-1/+1
|
* Use `toml_edit` instead of `toml`Libravatar René Kijewski2023-01-301-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`Libravatar René Kijewski2023-01-301-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)Libravatar Dirkjan Ochtman2023-01-301-4/+3
|
* chore: remove allow(clippy::disallowed_names)Libravatar Dirkjan Ochtman2022-11-071-1/+0
|
* chore: apply clippy suggestions for 1.65Libravatar Dirkjan Ochtman2022-11-071-1/+1
|
* Feature-gate test_whitespace_parsing()Libravatar René Kijewski2022-06-201-0/+1
|
* Replace `&Option<Box<T>>` with `Option<&T>` (#696)Libravatar René Kijewski2022-06-151-1/+1
| | | No need to work on references to references.
* Move code generation into askama_deriveLibravatar René Kijewski2022-05-241-0/+536