From 16da7e366323090fa65ebf1c9990193c9eb8ef9c Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Wed, 5 Jan 2022 19:20:18 +0100 Subject: Remove unused imports --- askama/src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 185e8cc..491ebcd 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -59,17 +59,10 @@ //! in the configuration file. The default syntax , "default", is the one //! provided by Askama. -#![allow(unused_imports)] #![deny(elided_lifetimes_in_paths)] -#[macro_use] -extern crate askama_derive; pub use askama_shared as shared; -use std::fs::{self, DirEntry}; -use std::io; -use std::path::Path; - pub use askama_escape::{Html, Text}; /// Main `Template` trait; implementations are generally derived -- cgit