ramhorns 0.5.0

Experimental Mustache-like templating engine.
Documentation
[package]
name = "ramhorns"
version = "0.5.0"
authors = ["Maciej Hirsz <maciej.hirsz@pm.me>"]
license = "GPL-3.0"
edition = "2018"
description = "Experimental Mustache-like templating engine."
repository = "https://github.com/maciejhirsz/ramhorns"
documentation = "https://docs.rs/ramhorns"
readme = "../README.md"
keywords = ["html", "template", "mustache"]
categories = ["template-engine"]

[dependencies]
fnv = "1.0"
pulldown-cmark = "0.4"
ramhorns-derive = { version = "0.5.0", optional = true }

[features]
default = ["export_derive"]

# Re-exports the `Context` derive macro, so that end user only needs to
# import this crate and `use ramhorns::Context` to get both the trait and
# derive proc macro.
export_derive = ["ramhorns-derive"]