diff options
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 = ".." |