[package]
edition = "2024"
rust-version = "1.89.0"
name = "zenops-expand"
version = "0.5.4"
authors = ["Bjorn Ove Hay Andersen <bjrnove@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "String newtype with `${name}` placeholders that must be expanded before use."
readme = "README.md"
keywords = [
"template",
"expand",
"substitution",
"interpolation",
]
categories = [
"template-engine",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bjorn-ove/zenops"
[features]
indexmap = ["dep:indexmap"]
schemars = ["dep:schemars"]
[lib]
name = "zenops_expand"
path = "src/lib.rs"
[dependencies.indexmap]
version = "2.14.0"
features = ["serde"]
optional = true
[dependencies.schemars]
version = "1.2"
features = [
"preserve_order",
"indexmap2",
"smol_str03",
]
optional = true
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.smol_str]
version = "0.3.6"
features = ["serde"]
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.toml]
version = "1.1.2"