Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-02-13 | Add impl From<{Template}> for hyper::Body derive | Rudi Floren | 1 | -5/+39 | |
with-hyper now derives an impl allowing Templates to be passed to functions with trait bounds for Into<hyper::Body>. | |||||
2023-01-30 | Apply clippy suggestions for 1.67 (#769) | Dirkjan Ochtman | 2 | -2/+3 | |
2022-09-26 | Remove `_ext` from `askama_hyper`, too | René Kijewski | 1 | -3/+3 | |
That part was missing from #632, because #632 came before #706, and I forgot to update the older PR. | |||||
2022-07-25 | Implement basic hyper integration | René Kijewski | 7 | -0/+144 | |
The integration is based on askama_gotham. There is no specific trait to convert an arbitrary T to `hyper::Response`, so I used `From<Template> for hyper::Response`. |