From dc9c44e952807c9193c408b68dae8bd3459cf299 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 15 Feb 2017 20:14:04 +0100 Subject: Add more metadata to Cargo manifests --- askama/Cargo.toml | 8 +++++++- askama_derive/Cargo.toml | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 2f28018..7a6b7db 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -2,11 +2,17 @@ name = "askama" version = "0.1.0" authors = ["Dirkjan Ochtman "] -description = "Type-safe compiled templates for Rust" +description = "Type-safe, compiled Jinja-like templates for Rust" +keywords = ["markup", "template", "jinja2", "html"] +categories = ["template-engine"] +homepage = "https://github.com/djc/askama" repository = "https://github.com/djc/askama" license = "MIT/Apache-2.0" workspace = ".." +[badges] +travis-ci = { repository = "https://github.com/djc/askama" } + [dependencies] nom = "2.1" syn = "0.11" diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 03b9b11..5f23f98 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -3,6 +3,7 @@ name = "askama_derive" version = "0.1.0" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" +homepage = "https://github.com/djc/askama" repository = "https://github.com/djc/askama" license = "MIT/Apache-2.0" workspace = ".." -- cgit