aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/src/lib.rs5
-rw-r--r--askama_derive/src/generator.rs18
2 files changed, 16 insertions, 7 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs
index d643c18..a0d641b 100644
--- a/askama/src/lib.rs
+++ b/askama/src/lib.rs
@@ -522,5 +522,8 @@ pub mod gotham {
/// Old build script helper to rebuild crates if contained templates have changed
///
/// This function is now deprecated and does nothing.
-#[deprecated(since="0.8.1", note="file-level dependency tracking is handled automatically without build script")]
+#[deprecated(
+ since = "0.8.1",
+ note = "file-level dependency tracking is handled automatically without build script"
+)]
pub fn rerun_if_templates_changed() {}
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs
index 7db4a49..b0630df 100644
--- a/askama_derive/src/generator.rs
+++ b/askama_derive/src/generator.rs
@@ -117,9 +117,12 @@ impl<'a> Generator<'a> {
};
if path_is_valid {
let path = path.to_str().unwrap();
- buf.writeln(&quote! {
- include_bytes!(#path);
- }.to_string());
+ buf.writeln(
+ &quote! {
+ include_bytes!(#path);
+ }
+ .to_string(),
+ );
}
}
@@ -624,9 +627,12 @@ impl<'a> Generator<'a> {
// Make sure the compiler understands that the generated code depends on the template file.
{
let path = path.to_str().unwrap();
- buf.writeln(&quote! {
- include_bytes!(#path);
- }.to_string());
+ buf.writeln(
+ &quote! {
+ include_bytes!(#path);
+ }
+ .to_string(),
+ );
}
let size_hint = {