handlebars 0.19.0

Handlebars templating implemented in Rust.
Documentation
[package]

name = "handlebars"
version = "0.19.0"
authors = ["Ning Sun <sunng@about.me>"]
description = "Handlebars templating implemented in Rust."
license = "MIT"
keywords = ["handlebars", "templating", "web"]
homepage = "https://github.com/sunng87/handlebars-rust"
repository = "https://github.com/sunng87/handlebars-rust"
documentation = "http://sunng87.github.io/handlebars-rust/"
readme = "README.md"

[lib]

name = "handlebars"
path = "src/lib.rs"

[dependencies]

regex = "^0.1.41"
log = "^0.3.1"
rustc-serialize = { version = "^0.3.15", optional = true }
lazy_static = "^0.1.14"
quick-error = "^1.0.0"
serde = { version = "^0.7.0", optional = true }
serde_json = { version = "^0.7.0", optional = true }
serde_macros = { version = "^0.7.0", optional = true }
pest = "^0.3.0"

[features]
default = ["rustc_ser_type"]
rustc_ser_type = ["rustc-serialize"]
serde_type = ["serde", "serde_json"]
unstable = ["serde_type", "serde_macros"]

[dev-dependencies]
env_logger = "^0.3.2"
maplit = "^0.1.3"
#tojson_macros = "*"
#syntex = "*"

[package.metadata.release]
sign-commit = true
upload-doc = true