aboutsummaryrefslogtreecommitdiffstats
path: root/testing
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 /testing
parent0efd0c5cc55eb016472947c56e22e7ffe87ed9d4 (diff)
downloadaskama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.gz
askama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.bz2
askama-664398b225fe916cc0b2b74047e8aea060ea9214.zip
Hide askama_derive dependency inside askama (fixes #2)
Diffstat (limited to 'testing')
-rw-r--r--testing/Cargo.toml1
-rw-r--r--testing/tests/filters.rs1
-rw-r--r--testing/tests/inheritance.rs3
-rw-r--r--testing/tests/operators.rs3
-rw-r--r--testing/tests/simple.rs1
5 files changed, 2 insertions, 7 deletions
diff --git a/testing/Cargo.toml b/testing/Cargo.toml
index 8e7b1a7..bb6b534 100644
--- a/testing/Cargo.toml
+++ b/testing/Cargo.toml
@@ -7,7 +7,6 @@ build = "build.rs"
[dependencies]
askama = { path = "../askama", version = "*" }
-askama_derive = { path = "../askama_derive", version = "*" }
[build-dependencies]
askama = { path = "../askama", version = "*" }
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;