[package]
edition = "2018"
name = "horrorshow"
version = "0.8.9"
authors = ["Steven Allen <steven@stebalien.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a templating library written in rust macros"
documentation = "https://docs.rs/horrorshow"
readme = "README.md"
keywords = [
"xml",
"html",
"template",
]
categories = ["template-engine"]
license = "MIT/Apache-2.0"
repository = "https://github.com/Stebalien/horrorshow-rs"
[features]
alloc = []
default = [
"ops",
"std",
"alloc",
]
ops = []
std = ["alloc"]
[lib]
name = "horrorshow"
path = "src/lib.rs"
[[example]]
name = "blog"
path = "examples/blog.rs"
[[example]]
name = "subtemplate"
path = "examples/subtemplate.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "boxes"
path = "tests/boxes.rs"
[[test]]
name = "coherence"
path = "tests/coherence.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "escape"
path = "tests/escape.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "statements"
path = "tests/statements.rs"
[[test]]
name = "template"
path = "tests/template.rs"
[[test]]
name = "test_cat"
path = "tests/test_cat.rs"
[[test]]
name = "utf8"
path = "tests/utf8.rs"
[[test]]
name = "utility"
path = "tests/utility.rs"
[[test]]
name = "void"
path = "tests/void.rs"
[[test]]
name = "xml"
path = "tests/xml.rs"
[[bench]]
name = "horrorshow"
path = "benches/horrorshow.rs"
[dev-dependencies.doc-comment]
version = "0.3"