-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
55 lines (45 loc) · 900 Bytes
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "ssr_template_benchmarks"
version = "0.1.0"
edition = "2021"
[dependencies]
hyped = { git = "https://github.com/swlkr/hyped" }
divan = "0.1.8"
maud = { version = "0.25.0" }
askama = "0.12.1"
tera = "1.19.1"
serde = { version = "1.0.195", features = ["derive"] }
lazy_static = "1.4.0"
tinytemplate = { git = "https://github.com/johnbartholomew/TinyTemplate", branch = "sync" }
handlebars = "5.0.0"
serde_json = "1.0.111"
minijinja = "1.0.10"
html-node = "0.5.0"
hypertext = "0.3.0"
[[bench]]
name = "hyped"
harness = false
[[bench]]
name = "maud"
harness = false
[[bench]]
name = "askama"
harness = false
[[bench]]
name = "tera"
harness = false
[[bench]]
name = "tinytemplate"
harness = false
[[bench]]
name = "handlebars"
harness = false
[[bench]]
name = "minijinja"
harness = false
[[bench]]
name = "html_node"
harness = false
[[bench]]
name = "hypertext"
harness = false