diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-23 20:43:11 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-23 20:43:11 +0200 |
commit | 40775d8c885bda6bd8e086bcc03127c714fc890e (patch) | |
tree | ee531e00540470e348f731034723d5e1aa228974 /testing/Cargo.toml | |
parent | e9046c46b7bac87b3f4d89894dd21365360bd3ce (diff) | |
download | askama-40775d8c885bda6bd8e086bcc03127c714fc890e.tar.gz askama-40775d8c885bda6bd8e086bcc03127c714fc890e.tar.bz2 askama-40775d8c885bda6bd8e086bcc03127c714fc890e.zip |
Add test for Iron support
Diffstat (limited to 'testing/Cargo.toml')
-rw-r--r-- | testing/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/Cargo.toml b/testing/Cargo.toml index be9af26..6d81db5 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -6,8 +6,9 @@ workspace = ".." build = "build.rs" [dependencies] +iron = "0.5" serde_json = "1.0" -askama = { path = "../askama", version = "*", features = ["serde-json"] } +askama = { path = "../askama", version = "*", features = ["with-iron", "serde-json"] } [build-dependencies] -askama = { path = "../askama", version = "*", features = ["serde-json"] } +askama = { path = "../askama", version = "*", features = ["with-iron", "serde-json"] } |