From 9de9af4a006021a63f705e420be4cdef3eb6af82 Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Fri, 14 Jul 2023 05:36:20 -0400 Subject: fix clippy::items-after-test-module error (#839) --- askama/src/lib.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 8806490..a98989e 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -171,6 +171,15 @@ impl fmt::Display for dyn DynTemplate { } } +/// 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" +)] +pub fn rerun_if_templates_changed() {} + #[cfg(test)] mod tests { use std::fmt; @@ -217,12 +226,3 @@ mod tests { assert_eq!(vec, vec![b't', b'e', b's', b't']); } } - -/// 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" -)] -pub fn rerun_if_templates_changed() {} -- cgit