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) --- testing/tests/filters.rs | 1 - testing/tests/inheritance.rs | 3 +-- testing/tests/operators.rs | 3 +-- testing/tests/simple.rs | 1 - 4 files changed, 2 insertions(+), 6 deletions(-) (limited to 'testing/tests') diff --git a/testing/tests/filters.rs b/testing/tests/filters.rs index 5882bae..0b1b7c9 100644 --- a/testing/tests/filters.rs +++ b/testing/tests/filters.rs @@ -1,5 +1,4 @@ #[macro_use] -extern crate askama_derive; extern crate askama; use askama::Template; diff --git a/testing/tests/inheritance.rs b/testing/tests/inheritance.rs index b3add1c..459a5b2 100644 --- a/testing/tests/inheritance.rs +++ b/testing/tests/inheritance.rs @@ -1,6 +1,5 @@ -extern crate askama; #[macro_use] -extern crate askama_derive; +extern crate askama; use askama::Template; diff --git a/testing/tests/operators.rs b/testing/tests/operators.rs index 70d26b1..73b30b1 100644 --- a/testing/tests/operators.rs +++ b/testing/tests/operators.rs @@ -1,6 +1,5 @@ -extern crate askama; #[macro_use] -extern crate askama_derive; +extern crate askama; use askama::Template; diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 60ecf05..a53257d 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -1,5 +1,4 @@ #[macro_use] -extern crate askama_derive; extern crate askama; use askama::Template; -- cgit