aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar René Kijewski <Kijewski@users.noreply.github.com>2023-04-01 16:01:57 +0200
committerLibravatar GitHub <noreply@github.com>2023-04-01 16:01:57 +0200
commit25e1a51e95bfcecc7ecf16a175dd71820576eaf1 (patch)
treef76f03fd5559290c64c2b007f3260a72caec769c
parent41b4181a2001f5b6297a870e2875dc72e09b1989 (diff)
downloadaskama-25e1a51e95bfcecc7ecf16a175dd71820576eaf1.tar.gz
askama-25e1a51e95bfcecc7ecf16a175dd71820576eaf1.tar.bz2
askama-25e1a51e95bfcecc7ecf16a175dd71820576eaf1.zip
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`.
-rw-r--r--askama_tide/Cargo.toml2
-rw-r--r--askama_tide/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml
index c92abdf..eff0073 100644
--- a/askama_tide/Cargo.toml
+++ b/askama_tide/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_tide"
-version = "0.15.0"
+version = "0.15.1"
edition = "2021"
rust-version = "1.58"
description = "Tide integration for Askama templates"
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: Template>(t: &T) -> Result<Body> {