aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2023-10-06 11:50:56 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2023-11-01 12:52:09 +0100
commit4de28e4584727d4df1cef1c8844db864df128995 (patch)
treed7d06593b4f86b9dbc9911aacb563611fef8d42d /askama_derive/src/generator.rs
parentc951fcefcafe604136cf0263c6fd51716860b754 (diff)
downloadaskama-4de28e4584727d4df1cef1c8844db864df128995.tar.gz
askama-4de28e4584727d4df1cef1c8844db864df128995.tar.bz2
askama-4de28e4584727d4df1cef1c8844db864df128995.zip
Cleanup imports a bit
Diffstat (limited to 'askama_derive/src/generator.rs')
-rw-r--r--askama_derive/src/generator.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs
index 8d120be..929e18c 100644
--- a/askama_derive/src/generator.rs
+++ b/askama_derive/src/generator.rs
@@ -1,3 +1,7 @@
+use std::collections::hash_map::{Entry, HashMap};
+use std::path::{Path, PathBuf};
+use std::{cmp, hash, mem, str};
+
use crate::config::{get_template_source, WhitespaceHandling};
use crate::heritage::{Context, Heritage};
use crate::input::{Source, TemplateInput};
@@ -9,10 +13,6 @@ use parser::node::{
use parser::{Expr, Node, Parsed};
use quote::quote;
-use std::collections::hash_map::{Entry, HashMap};
-use std::path::{Path, PathBuf};
-use std::{cmp, hash, mem, str};
-
pub(crate) struct Generator<'a> {
// The template input state: original struct AST and attributes
input: &'a TemplateInput<'a>,