blob: 3f90f652d9cffc9cb7e4bf46bc7b1d429649f1af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "askama_tide"
version = "0.10.0"
authors = ["Jacob Rothstein <hi@jbr.me>"]
edition = "2018"
description = "Tide integration for Askama templates"
keywords = ["markup", "template", "jinja2", "html", "tide", "http-types"]
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"
documentation = "https://docs.rs/askama"
license = "MIT OR Apache-2.0"
workspace = ".."
readme = "README.md"
[dependencies]
askama = { version = "0.10.2", path = "../askama", features = ["with-tide"] }
tide = "0.11"
async-std = { version = "1.6.0", features = ["unstable", "attributes"] }
|