aboutsummaryrefslogtreecommitdiffstats
path: root/askama_tide/Cargo.toml
blob: c92abdfa8dd86a73a3746dc6c4fba24fa4216ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "askama_tide"
version = "0.15.0"
edition = "2021"
rust-version = "1.58"
description = "Tide integration for Askama templates"
keywords = ["markup", "template", "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.12", path = "../askama", default-features = false, features = ["with-tide"] }
tide = { version = "0.16", default-features = false }

[dev-dependencies]
async-std = { version = "1.6.5", features = ["attributes"] }

[features]
default = ["askama/default"]
config = ["askama/config"]
humansize = ["askama/humansize"]
markdown = ["askama/markdown"]
num-traits = ["askama/num-traits"]
serde-json = ["askama/serde-json"]
serde-yaml = ["askama/serde-yaml"]
urlencode = ["askama/urlencode"]