aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'askama_derive/src/generator.rs')
-rw-r--r--askama_derive/src/generator.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs
index fd2fb5b..6c53a89 100644
--- a/askama_derive/src/generator.rs
+++ b/askama_derive/src/generator.rs
@@ -1,10 +1,13 @@
use parser::{self, Cond, Expr, Node, Target, WS};
use path;
+
+use quote::{Tokens, ToTokens};
+
use std::path::PathBuf;
use std::str;
use std::collections::HashSet;
+
use syn;
-use quote::{Tokens, ToTokens};
struct Generator<'a> {
buf: String,