aboutsummaryrefslogtreecommitdiffstats
path: root/askama_hyper/tests/basic.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add impl From<{Template}> for hyper::Body deriveLibravatar Rudi Floren2023-02-131-5/+39
| | | | | with-hyper now derives an impl allowing Templates to be passed to functions with trait bounds for Into<hyper::Body>.
* Apply clippy suggestions for 1.67 (#769)Libravatar Dirkjan Ochtman2023-01-301-1/+1
|
* Implement basic hyper integrationLibravatar René Kijewski2022-07-251-0/+70
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`.