From c84f0810438da916dacb44aed65e5ba02fe159e5 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 8 Mar 2017 20:03:08 +0100 Subject: Clean up askama crate per clippy's suggestions --- askama/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- cgit