aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive
diff options
context:
space:
mode:
authorLibravatar René Kijewski <kijewski@library.vetmed.fu-berlin.de>2022-01-06 14:55:29 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-01-06 15:12:42 +0100
commit8b4cc660a95d7ffa2d3f03efcea36048a425e762 (patch)
tree93493df22136165dccdc734e0284604edadb2fe9 /askama_derive
parentb7b5ff0633092006205ccfca9febab0978c0c957 (diff)
downloadaskama-8b4cc660a95d7ffa2d3f03efcea36048a425e762.tar.gz
askama-8b4cc660a95d7ffa2d3f03efcea36048a425e762.tar.bz2
askama-8b4cc660a95d7ffa2d3f03efcea36048a425e762.zip
Remove the iron integration from generator
Issue #527 removed the askama_iron package, but not the integration if someone uses askama_derive's feature with "iron". The old askama_iron crate uses askama v0.10, so it will still work.
Diffstat (limited to 'askama_derive')
-rw-r--r--askama_derive/Cargo.toml1
-rw-r--r--askama_derive/src/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 60ad48d..5369935 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -18,7 +18,6 @@ config = ["askama_shared/config"]
actix-web = []
axum = []
gotham = []
-iron = []
mendes = []
rocket = []
tide = []
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs
index 3557267..b2379f3 100644
--- a/askama_derive/src/lib.rs
+++ b/askama_derive/src/lib.rs
@@ -115,7 +115,6 @@ const INTEGRATIONS: Integrations = Integrations {
actix: cfg!(feature = "actix-web"),
axum: cfg!(feature = "axum"),
gotham: cfg!(feature = "gotham"),
- iron: cfg!(feature = "iron"),
mendes: cfg!(feature = "mendes"),
rocket: cfg!(feature = "rocket"),
tide: cfg!(feature = "tide"),