From 9f3b590206e3dfe33b7129b1c8ff010f60318cf2 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 27 Aug 2017 22:10:42 +0200 Subject: Move most of the code into new askama_shared crate This makes it possible to share code between askama and askama_derive. --- askama_derive/Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'askama_derive/Cargo.toml') diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 61263be..66610ea 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -13,10 +13,9 @@ proc-macro = true [features] default = [] -iron = [] -rocket = [] +iron = ["askama_shared/iron"] +rocket = ["askama_shared/rocket"] [dependencies] -nom = "3" -quote = "0.3" +askama_shared = { version = "0.3.4", path = "../askama_shared" } syn = "0.11" -- cgit