forked from rosetta-rs/template-benchmarks-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.14 KB
/
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
[package]
name = "template-benchmarks-rs"
version = "0.2.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
edition = "2021"
build = "src/build.rs"
[dependencies]
serde = "1"
serde_derive = "1"
serde_json = "1"
serde_yaml = "0.9"
criterion = { version = "0.5", features = ["html_reports"] }
askama = { git = "https://github.com/djc/askama", branch = "main" }
handlebars = { git = "https://github.com/sunng87/handlebars-rust" }
horrorshow = { git = "https://github.com/Stebalien/horrorshow-rs" }
liquid = { git = "https://github.com/cobalt-org/liquid-rust" }
markup = { git = "https://github.com/utkarshkukreti/markup.rs" }
sailfish = { git = "https://github.com/Kogia-sima/sailfish" }
sailfish-macros = { git = "https://github.com/Kogia-sima/sailfish" }
tera = { git = "https://github.com/Keats/tera" }
fomat-macros = { git = "https://github.com/krdln/fomat-macros" }
maud = { git = "https://github.com/lambda-fairy/maud" }
minijinja = { git = "https://github.com/mitsuhiko/minijinja" }
ramhorns = { git = "https://github.com/maciejhirsz/ramhorns" }
[build-dependencies]
ructe = { git = "https://github.com/kaj/ructe" }
[[bench]]
name = "all"
harness = false