aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-03-06 22:40:04 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-03-06 22:40:04 +0100
commit664398b225fe916cc0b2b74047e8aea060ea9214 (patch)
tree9943ad33c662fe2a3fbc7434bae8dfefe0d6bb54 /README.md
parent0efd0c5cc55eb016472947c56e22e7ffe87ed9d4 (diff)
downloadaskama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.gz
askama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.bz2
askama-664398b225fe916cc0b2b74047e8aea060ea9214.zip
Hide askama_derive dependency inside askama (fixes #2)
Diffstat (limited to '')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
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