blob: 6223673f43407eaf882089eaeda638d27570212e (
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
|
[package]
name = "askama_testing"
version = "0.1.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
workspace = ".."
[features]
default = []
nightly = ["rocket", "rocket_codegen", "askama/with-rocket"]
[dependencies]
actix-web = "0.7"
askama = { path = "../askama", version = "*", features = ["with-actix-web", "with-iron", "serde-json"] }
bytes = "0.4"
criterion = "0.2"
iron = "0.6"
rocket = { version = "0.3", optional = true }
rocket_codegen = { version = "0.3", optional = true }
serde_json = "1.0"
[build-dependencies]
askama = { path = "../askama", version = "*", features = ["with-actix-web", "with-iron", "serde-json"] }
[[bench]]
name = "all"
harness = false
|