diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-15 20:14:04 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-15 20:14:04 +0100 |
commit | dc9c44e952807c9193c408b68dae8bd3459cf299 (patch) | |
tree | 1337af55063e46a6fd63aa7d3dc2a5d9f4fd68b8 | |
parent | a2af8348cce685363195542d9874c28b91a9d78f (diff) | |
download | askama-dc9c44e952807c9193c408b68dae8bd3459cf299.tar.gz askama-dc9c44e952807c9193c408b68dae8bd3459cf299.tar.bz2 askama-dc9c44e952807c9193c408b68dae8bd3459cf299.zip |
Add more metadata to Cargo manifests
Diffstat (limited to '')
-rw-r--r-- | askama/Cargo.toml | 8 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 1 |
2 files changed, 8 insertions, 1 deletions
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 <dirkjan@ochtman.nl>"] -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 <dirkjan@ochtman.nl>"] description = "Procedural macro package for Askama" +homepage = "https://github.com/djc/askama" repository = "https://github.com/djc/askama" license = "MIT/Apache-2.0" workspace = ".." |