Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-01-06 | Add `#![forbid(unsafe_code)]` to all crates except askama_escape | René Kijewski | 1 | -0/+1 | |
2022-01-06 | Add `#![deny(unreachable_pub)]` to all crates | René Kijewski | 1 | -0/+1 | |
2022-01-06 | No needless boxing of the error | René Kijewski | 1 | -3/+22 | |
2022-01-06 | Combine imports from the same module | René Kijewski | 1 | -3/+1 | |
2022-01-05 | Update for actix-web beta | René Kijewski | 1 | -19/+17 | |
2022-01-04 | askama_actix: revert to actix-web v3 for release | Dirkjan Ochtman | 1 | -6/+6 | |
2021-12-15 | Use a separate trait for object safety (#579) | Dirkjan Ochtman | 1 | -3/+2 | |
This is relatively major change to the main trait's API. For context, I always started from the concept of monomorphized traits, but later several contributors asked about object safety. At that point I made `Template` object-safe, and then even later added a `SizedTemplate` to make some things easier for people who don't need object safety. However, having object-safety in the primary trait is bad for performance (a substantial number of calls into the virtual `Write` trait is relatively slow), and I don't think those who don't need object safety should pay for the cost of having it. Additionally, I feel using associated consts for the extension and size hint is more idiomatic than having accessor methods. I don't know why I didn't use these from the start -- maybe associated consts didn't exist yet, or I didn't yet know how/when to use them. Askama is pretty old at this point... | |||||
2021-11-11 | Prepare for actix-web v4 (#553) | Sergey Pashinin | 1 | -7/+8 | |
2021-07-01 | Stop eliding lifetimes in paths | Dirkjan Ochtman | 1 | -0/+2 | |
2021-02-15 | Rename askama_actix trait method as suggested by clippy | Dirkjan Ochtman | 1 | -4/+4 | |
By bumping the dependency versions for askama and askama_shared, this should be safe. | |||||
2020-06-30 | Tweak dependency on futures for Actix integration | Dirkjan Ochtman | 1 | -0/+7 | |
2020-01-29 | Move Actix-Web integration into separate askama_actix crate | Dirkjan Ochtman | 1 | -0/+22 | |