askama 0.6.2

Type-safe, compiled Jinja-like templates for Rust
Documentation
[package]
name = "askama"
version = "0.6.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
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 = ".."
readme = "../README.md"

[badges]
travis-ci = { repository = "djc/askama" }

[features]
default = []
serde-json = ["askama_shared/serde-json"]
with-iron = ["iron", "askama_derive/iron"]
with-rocket = ["rocket", "askama_derive/rocket"]

[dependencies]
askama_derive = { path = "../askama_derive", version = "0.6.2" }
askama_shared = { version = "0.6.2", path = "../askama_shared" }
iron = { version = ">= 0.5, < 0.7", optional = true }
rocket = { version = "0.3", optional = true }

[package.metadata.docs.rs]
features = [ "serde-json" ]