forked from Keats/tera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 985 Bytes
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 985 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "tera"
version = "1.0.0-alpha.4"
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
license = "MIT"
readme = "README.md"
description = "Template engine based on Jinja2/Django templates"
homepage = "https://github.com/Keats/tera"
repository = "https://github.com/Keats/tera"
keywords = ["template", "html", "django", "markup", "jinja2"]
categories = ["template-engine"]
edition = "2018"
[dependencies]
globwalk = "0.6"
serde = "1.0"
serde_json = "1.0"
pest = "2"
pest_derive = "2"
v_htmlescape = "0.4"
# used in slugify filter
slug = "0.1"
# used in striptags filters
regex = "1.0"
# used for static regex
lazy_static = "1.0"
# used in urlencode filter
url = "1"
# used in filesizeformat filter
humansize = "1"
# used in date format filter
chrono = "0.4"
# used in truncate filter
unic-segment = "0.8"
[dev-dependencies]
serde_derive = "1.0"
pretty_assertions = "0.5"
tempfile = "3"
[features]
default = []
preserve_order = ["serde_json/preserve_order"]