From 8224f06f3e900443ee42d75cba30d4b9f5f6fd95 Mon Sep 17 00:00:00 2001 From: bott Date: Wed, 7 Nov 2018 13:53:30 +0100 Subject: Create askama_escape crate --- askama_escape/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 askama_escape/Cargo.toml (limited to 'askama_escape/Cargo.toml') diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml new file mode 100644 index 0000000..c6af27d --- /dev/null +++ b/askama_escape/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "askama_escape" +version = "0.1.0" +authors = ["Dirkjan Ochtman "] +description = "Escape function for Askama" +homepage = "https://github.com/djc/askama" +repository = "https://github.com/djc/askama" +license = "MIT/Apache-2.0" +workspace = ".." + +[features] +default = [] +serde-json = [] +iron = [] +rocket = [] +actix-web = [] -- cgit