[package]
edition = "2024"
name = "hbs-cli"
version = "0.2.7"
authors = ["Jakub A. Gramsz <jakub@gramsz.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple CLI for generating text from handlebars templates, by feeding them with data from file YAML/JSON."
homepage = "https://github.com/olorin37/hbs-cli"
documentation = "https://docs.rs/crate/hbs-cli"
readme = "README.md"
keywords = [
"handlebars",
"templating",
"cli",
"YAML",
"JSON",
]
categories = [
"command-line-interface",
"command-line-utilities",
"value-formatting",
]
license = "MIT"
repository = "https://github.com/olorin37/hbs-cli"
[[bin]]
name = "hbs-cli"
path = "src/main.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.handlebars]
version = "5.1"
[dependencies.serde]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"