hairy 0.1.0

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

[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.1.0", path = "../expry", default-features = false }
expry_macros = { version = "0.1.0", path = "../expry_macros" }
commandy = { version = "0.1.0", path = "../commandy", optional = true }
commandy_macros = { version = "0.1.0", path = "../commandy_macros", optional = true }
hyper = { version = "0.14", features = ["full"], optional = true }
tokio = { version = "1", features = ["full"], optional = true  }
futures = { version = "0.3", optional = true }