From 25e1a51e95bfcecc7ecf16a175dd71820576eaf1 Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Sat, 1 Apr 2023 16:01:57 +0200 Subject: Re-export `askama::*` in `askama_tide` (#802) Every integration crate but `askama_tide` exports `askama::*`. This PR makes `askama_tide` behave the same as every other `integration crate`. --- askama_tide/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_tide/src') diff --git a/askama_tide/src/lib.rs b/askama_tide/src/lib.rs index a7fa6c1..2dfb697 100644 --- a/askama_tide/src/lib.rs +++ b/askama_tide/src/lib.rs @@ -5,7 +5,7 @@ pub use askama; pub use tide; -use askama::*; +pub use askama::*; use tide::{Body, Response}; pub fn try_into_body(t: &T) -> Result { -- cgit