fabro/lib/crates/fabro-template/Cargo.toml
Bryan Helmkamp 5ed04c3c57 feat(template): unify workflow and config template syntax
Add a shared MiniJinja-based template crate and migrate workflow prompts,
imports, hooks, and InterpString env references to the new {{ ... }}
syntax. This also threads typed run inputs through workflow rendering and
updates docs and tests to match the new templating model.
2026-04-11 10:58:50 -04:00

21 lines
421 B
TOML

[package]
name = "fabro-template"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Shared MiniJinja-based template rendering for Fabro"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
fabro-util = { path = "../fabro-util" }
minijinja.workspace = true
serde.workspace = true
thiserror.workspace = true
toml.workspace = true