diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-08 20:03:08 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-08 20:03:08 +0100 |
commit | c84f0810438da916dacb44aed65e5ba02fe159e5 (patch) | |
tree | 0f54d04155b1a528bcad6e4b4e2f79c05684cb9c | |
parent | a20340d2e82fb69cac405b5c2960b75ebc94daf3 (diff) | |
download | askama-c84f0810438da916dacb44aed65e5ba02fe159e5.tar.gz askama-c84f0810438da916dacb44aed65e5ba02fe159e5.tar.bz2 askama-c84f0810438da916dacb44aed65e5ba02fe159e5.zip |
Clean up askama crate per clippy's suggestions
Diffstat (limited to '')
-rw-r--r-- | askama/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs index dff6a81..94c2f7f 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -2,7 +2,7 @@ //! It lets you write templates in a Jinja-like syntax, //! which are linked to a `struct` defining the template context. //! This is done using a custom derive implementation (implemented -//! in [askama_derive](https://crates.io/crates/askama_derive)). +//! in [`askama_derive`](https://crates.io/crates/askama_derive)). //! //! # Example template //! @@ -181,6 +181,7 @@ //! The same precedence order as Rust uses is applied. //! Expressions can be grouped using parentheses. +#![allow(unused_imports)] #[macro_use] extern crate askama_derive; |