aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive
diff options
context:
space:
mode:
Diffstat (limited to 'askama_derive')
-rw-r--r--askama_derive/Cargo.toml6
-rw-r--r--askama_derive/src/lib.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 99695dd..e5fd82a 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -14,12 +14,12 @@ edition = "2018"
proc-macro = true
[features]
-iron = []
-rocket = []
actix-web = []
gotham = []
-warp = []
+iron = []
+rocket = []
tide = []
+warp = []
[dependencies]
askama_shared = { version = "0.10", path = "../askama_shared", default-features = false }
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs
index 2a629d8..2277942 100644
--- a/askama_derive/src/lib.rs
+++ b/askama_derive/src/lib.rs
@@ -89,6 +89,6 @@ const INTEGRATIONS: Integrations = Integrations {
gotham: cfg!(feature = "gotham"),
iron: cfg!(feature = "iron"),
rocket: cfg!(feature = "rocket"),
- warp: cfg!(feature = "warp"),
tide: cfg!(feature = "tide"),
+ warp: cfg!(feature = "warp"),
};