diff options
author | René Kijewski <kijewski@library.vetmed.fu-berlin.de> | 2022-01-05 19:20:18 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2022-01-06 13:05:24 +0100 |
commit | 16da7e366323090fa65ebf1c9990193c9eb8ef9c (patch) | |
tree | e4404c794543be057caf735f6cca8f774ef461df | |
parent | 783073b4fbc8bb974b04467b821c15e88d3c970e (diff) | |
download | askama-16da7e366323090fa65ebf1c9990193c9eb8ef9c.tar.gz askama-16da7e366323090fa65ebf1c9990193c9eb8ef9c.tar.bz2 askama-16da7e366323090fa65ebf1c9990193c9eb8ef9c.zip |
Remove unused imports
-rw-r--r-- | askama/src/lib.rs | 7 |
1 files changed, 0 insertions, 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 |