hornbeam/hornbeam_interpreter/Cargo.toml

36 lines
901 B
TOML

[package]
name = "hornbeam_interpreter"
description = "Interpreter for the Hornbeam template language. This is the low-level implementation crate; not advised for direct use in applications."
license = "AGPL-3.0-or-later"
version = "0.0.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hornbeam_grammar = { version = "0.0.4", path = "../hornbeam_grammar" }
hornbeam_ir = { version = "0.0.4", path = "../hornbeam_ir" }
fluent-templates = { version = "0.8.0", optional = true }
bevy_reflect = { version = "0.11.0" }
html-escape = "0.2.13"
walkdir = "2.3.2"
async-trait = "0.1.64"
async-recursion = "1.0.2"
thiserror = "1.0.38"
itertools = "0.10.5"
pollster = "0.3.0"
tracing = "0.1.37"
percent-encoding = "2.2.0"
[features]
default = ["fluent"]
fluent = ["fluent-templates"]
[dev-dependencies]
insta = "1.38.0"