Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-01-06 | Remove the iron integration from generator | 1 | -1/+0 | ||
Issue #527 removed the askama_iron package, but not the integration if someone uses askama_derive's feature with "iron". The old askama_iron crate uses askama v0.10, so it will still work. | |||||
2022-01-06 | Add `#![forbid(unsafe_code)]` to all crates except askama_escape | 1 | -0/+1 | ||
2022-01-06 | Add `#![deny(unreachable_pub)]` to all crates | 1 | -0/+1 | ||
2021-11-27 | Add Axum integration | 1 | -0/+1 | ||
2021-10-25 | Handle build hangs due to unintended template recursion. (#539) | 1 | -0/+12 | ||
2021-07-01 | Stop eliding lifetimes in paths | 1 | -2/+2 | ||
2021-06-14 | Fix needless borrowing | 1 | -1/+1 | ||
2020-11-02 | Use `syn::Error::to_compile_error` and add trybuild ui test (#374) | 1 | -4/+5 | ||
2020-11-02 | Improve error handling (see #368) | 1 | -18/+30 | ||
2020-07-28 | Add mendes integration | 1 | -0/+1 | ||
2020-07-14 | alphabetize frameworks | 1 | -1/+1 | ||
2020-07-14 | askama tide | 1 | -0/+1 | ||
2020-01-29 | Move code generation into askama_shared | 1 | -142/+12 | ||
2020-01-29 | Move input module into askama_shared | 1 | -2/+1 | ||
2020-01-29 | Move parser into askama_shared | 1 | -5/+1 | ||
2020-01-02 | Clean up clippy warnings | 1 | -0/+1 | ||
2019-03-18 | Create heritage for extends-only templates (fixes #224) | 1 | -1/+1 | ||
2018-12-08 | Use 2018 edition idioms | 1 | -5/+2 | ||
2018-12-08 | Upgrade to 2018 edition | 1 | -5/+5 | ||
2018-12-07 | Fix cargo fmt | 1 | -1/+2 | ||
2018-11-05 | Send debug output to stderr instead of stdout | 1 | -2/+2 | ||
2018-10-07 | Improve variable name to better reflect its type | 1 | -2/+2 | ||
2018-10-05 | Add changing delimiters support | 1 | -5/+8 | ||
2018-09-14 | Update formatting for rust 1.29.0 rustfmt | 1 | -2/+1 | ||
2018-09-02 | Fix formatting with cargo fmt | 1 | -1/+2 | ||
2018-07-25 | Prepare Heritage before Generator instantiation | 1 | -1/+39 | ||
2018-07-11 | Move get_template_source() into askama_derive | 1 | -4/+32 | ||
2018-07-11 | Move find_template_from_path() into Config | 1 | -11/+11 | ||
2018-07-04 | Remove restrictions to named field structs (fixes #101) | 1 | -4/+0 | ||
2018-07-02 | Fix unused import warning | 1 | -1/+1 | ||
2018-07-02 | Only pass path to context | 1 | -5/+5 | ||
2018-06-22 | Fix formatting with cargo fmt | 1 | -4/+6 | ||
2018-06-21 | Flatten inherited blocks for code generation | 1 | -21/+10 | ||
2018-06-21 | Store extends path in Context | 1 | -12/+11 | ||
2018-06-21 | Use Contexts to keep per-template state | 1 | -5/+127 | ||
2018-06-21 | Fix formatting with cargo fmt | 1 | -2/+2 | ||
2018-06-21 | Inline TemplateMeta into TemplateInput | 1 | -3/+3 | ||
2018-06-21 | Let build_template() own the template source | 1 | -2/+9 | ||
2018-06-21 | Rename variable for consistency | 1 | -5/+5 | ||
2018-06-15 | Handle imports as part of code generation | 1 | -41/+1 | ||
2018-05-21 | Upgrade to syn-0.14 and quote-0.6 | 1 | -1/+1 | ||
2018-04-12 | Isolate proc-macro dependency to the proc macro | 1 | -1/+71 | ||
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. | |||||
2018-01-09 | Upgrade to syn-0.12 and quote-0.4 | 1 | -3/+3 | ||
2017-09-05 | Move tightly coupled code from derive to shared crate | 1 | -111/+1 | ||
2017-08-27 | Move most of the code into new askama_shared crate | 1 | -11/+5 | ||
This makes it possible to share code between askama and askama_derive. | |||||
2017-08-16 | Support specifying template source as an attribute | 1 | -11/+29 | ||
2017-08-16 | Pass path to code generation as Path | 1 | -1/+3 | ||
2017-08-16 | Use reference into AST for template path instead of cloning | 1 | -4/+4 | ||
2017-08-16 | Use enum for print option value | 1 | -5/+26 | ||
2017-08-08 | Reorganize code order in askama_derive modules | 1 | -34/+34 | ||