From 4c8c773c84a48963e892c72f38f37bcb99b6eb74 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 3 Jan 2017 10:01:16 +0100 Subject: Rename askama_codegen to askama_derive This appears to be best practice for crates using macros 1.1. --- askama_derive/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 askama_derive/Cargo.toml (limited to 'askama_derive/Cargo.toml') diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml new file mode 100644 index 0000000..9f525f4 --- /dev/null +++ b/askama_derive/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "askama_derive" +version = "0.1.0" +authors = ["Dirkjan Ochtman "] + +[dependencies] +syn = "0.10" +quote = "0.3" +nom = "2.0" + +[lib] +proc-macro = true -- cgit