diff options
Diffstat (limited to '')
-rw-r--r-- | askama_iron/templates/hello.html (renamed from testing/templates/hello.txt) | 0 | ||||
-rw-r--r-- | askama_iron/tests/basic.rs (renamed from testing/tests/iron.rs) | 1 | ||||
-rw-r--r-- | testing/Cargo.toml | 6 |
3 files changed, 1 insertions, 6 deletions
diff --git a/testing/templates/hello.txt b/askama_iron/templates/hello.html index 8149be7..8149be7 100644 --- a/testing/templates/hello.txt +++ b/askama_iron/templates/hello.html diff --git a/testing/tests/iron.rs b/askama_iron/tests/basic.rs index f58a609..32ca839 100644 --- a/testing/tests/iron.rs +++ b/askama_iron/tests/basic.rs @@ -1,4 +1,3 @@ -#![cfg(feature = "iron")] use askama::Template; use iron::{status, Response}; diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 5517047..ff2b137 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -6,14 +6,10 @@ workspace = ".." edition = "2018" [features] -default = [] -full = ["with-iron", "serde-json"] -serde-json = ["serde_json", "askama/serde-json"] -with-iron = ["iron", "askama/with-iron"] +default = ["serde_json", "askama/serde-json"] [dependencies] askama = { path = "../askama", version = "*" } -iron = { version = "0.6", optional = true } serde_json = { version = "1.0", optional = true } [dev-dependencies] |