aboutsummaryrefslogtreecommitdiffstats
path: root/testing/Cargo.toml
blob: 8db4cd59edb06a8e98b56a1ebc03ac8499f603ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "askama_testing"
version = "0.1.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
workspace = ".."
build = "build.rs"

[features]
default = []
nightly = ["rocket", "rocket_codegen", "askama/with-rocket"]

[dependencies]
iron = "0.5"
serde_json = "1.0"
askama = { path = "../askama", version = "*", features = ["with-iron", "serde-json"] }
rocket = { version = "0.3", optional = true }
rocket_codegen = { version = "0.3", optional = true }

[build-dependencies]
askama = { path = "../askama", version = "*", features = ["with-iron", "serde-json"] }