hairy 0.2.1

Compiled text templates (not unlike Mustache and Handlebars), with support for expressions and custom functions inside such expressions.
Documentation
[package]
name = "hairy"
version = "0.2.1"
edition = "2021"
authors = ["Bernard van Gastel <bvgastel@bitpowder.com>"]
homepage = "https://www.bitpowder.com/libs/indigo/"
repository = "https://gitlab.com/bitpowder/indigo-ng"
license = "Apache-2.0"
keywords = ["mustache", "expressions", "bytecode", "interpreter"]
categories = ["template-engine", "parser-implementations"]
description = "Compiled text templates (not unlike Mustache and Handlebars), with support for expressions and custom functions inside such expressions."
readme = "README.md"

[features]
default = ["std"]
std = ["expry/std"]
mini = ["expry/mini"]
build-binary = ["commandy", "commandy_macros", "hyper", "tokio", "futures"]

[[bin]]
name = "hairprototyping"
required-features = ["build-binary"]

[dependencies]
expry = { version = "^0.2", path = "../expry", default-features = false }
expry_macros = { version = "^0.2", path = "../expry_macros" }
commandy = { version = "^0.2", path = "../commandy", optional = true }
commandy_macros = { version = "^0.2", path = "../commandy_macros", optional = true }
hyper = { version = "^0.14", features = ["full"], optional = true }
tokio = { version = "^1.19", features = ["full"], optional = true  }
futures = { version = "^0.3", optional = true }