fix(build): Add Askama build script

This commit is contained in:
Vincent Ambo 2018-05-25 18:46:44 +02:00 committed by Vincent Ambo
parent 1ec31e8c45
commit c2a551146d

5
build.rs Normal file
View file

@ -0,0 +1,5 @@
extern crate askama;
fn main() {
askama::rerun_if_templates_changed();
}