From 664398b225fe916cc0b2b74047e8aea060ea9214 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 6 Mar 2017 22:40:04 +0100 Subject: Hide askama_derive dependency inside askama (fixes #2) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index fbc80eb..ffcd40d 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,7 @@ In any Rust file inside your crate, add the following: ```rust #[macro_use] -extern crate askama_derive; // for the custom derive implementation -extern crate askama; // for the Template trait +extern crate askama; // for the Template trait and custom derive macro use askama::Template; // bring trait in scope -- cgit