From c2a551146d04e5e69192cdf3799684f2f9be5104 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 25 May 2018 18:46:44 +0200 Subject: [PATCH] fix(build): Add Askama build script --- build.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 build.rs diff --git a/build.rs b/build.rs new file mode 100644 index 000000000..89e3e6b1a --- /dev/null +++ b/build.rs @@ -0,0 +1,5 @@ +extern crate askama; + +fn main() { + askama::rerun_if_templates_changed(); +}