aboutsummaryrefslogtreecommitdiffstats
path: root/askama_hyper/Cargo.toml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add MSRV checking in CILibravatar Dirkjan Ochtman2023-09-291-1/+1
| | | | Bump MSRV to 1.65 for the use of let .. else.
* Bump versions for Askama 0.12 (#784)Libravatar Dirkjan Ochtman2023-03-031-1/+1
|
* Apply clippy suggestions for 1.67 (#769)Libravatar Dirkjan Ochtman2023-01-301-1/+2
|
* Implement basic hyper integrationLibravatar René Kijewski2022-07-251-0/+33
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`.