aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-28 11:54:47 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-28 11:56:21 +0200
commit737858c5166e0d34d95084b349698971c019844f (patch)
tree488a04e8d238875b5d96c7ca07c20a6d41c9e619 /askama_derive
parent6642c4403f9469b7d97749b922bbab92d82b8c37 (diff)
downloadaskama-737858c5166e0d34d95084b349698971c019844f.tar.gz
askama-737858c5166e0d34d95084b349698971c019844f.tar.bz2
askama-737858c5166e0d34d95084b349698971c019844f.zip
Add mendes integration
Diffstat (limited to 'askama_derive')
-rw-r--r--askama_derive/Cargo.toml1
-rw-r--r--askama_derive/src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 8e97647..4394444 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -17,6 +17,7 @@ proc-macro = true
actix-web = []
gotham = []
iron = []
+mendes = []
rocket = []
tide = []
warp = []
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs
index 2277942..cbffa07 100644
--- a/askama_derive/src/lib.rs
+++ b/askama_derive/src/lib.rs
@@ -88,6 +88,7 @@ const INTEGRATIONS: Integrations = Integrations {
actix: cfg!(feature = "actix-web"),
gotham: cfg!(feature = "gotham"),
iron: cfg!(feature = "iron"),
+ mendes: cfg!(feature = "mendes"),
rocket: cfg!(feature = "rocket"),
tide: cfg!(feature = "tide"),
warp: cfg!(feature = "warp"),