diff options
author | Jacob Rothstein <hi@jbr.me> | 2020-07-09 21:06:03 -0700 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-07-14 09:46:12 +0200 |
commit | 29cb90bceb59d9dbea94342dfdd8136e1ef494e6 (patch) | |
tree | 8d4d63527fbaa039ccf7f0982ff8849c238e68d3 /askama_derive | |
parent | 0a6284aa91e1eb8da81d7b317fb539653e519d0a (diff) | |
download | askama-29cb90bceb59d9dbea94342dfdd8136e1ef494e6.tar.gz askama-29cb90bceb59d9dbea94342dfdd8136e1ef494e6.tar.bz2 askama-29cb90bceb59d9dbea94342dfdd8136e1ef494e6.zip |
askama tide
Diffstat (limited to 'askama_derive')
-rw-r--r-- | askama_derive/Cargo.toml | 1 | ||||
-rw-r--r-- | askama_derive/src/lib.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 8612146..99695dd 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -19,6 +19,7 @@ rocket = [] actix-web = [] gotham = [] warp = [] +tide = [] [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 fcd857d..2a629d8 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -90,4 +90,5 @@ const INTEGRATIONS: Integrations = Integrations { iron: cfg!(feature = "iron"), rocket: cfg!(feature = "rocket"), warp: cfg!(feature = "warp"), + tide: cfg!(feature = "tide"), }; |