[package]
edition = "2024"
name = "tempera"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Template based terminal coloring made really easy."
homepage = "https://sw.cowtech.it/tempera"
documentation = "https://docs.rs/tempera"
readme = "README.md"
keywords = [
"terminal",
"colors",
"ansi",
]
categories = [
"command-line-utilities",
"command-line-interface",
"template-engine",
]
license = "ISC"
repository = "https://github.com/ShogunPanda/tempera"
[lib]
name = "tempera"
path = "src/lib.rs"
[[bin]]
name = "tempera"
path = "src/main.rs"
[[test]]
name = "clean_template"
path = "tests/clean_template.rs"
[[test]]
name = "colorize"
path = "tests/colorize.rs"
[[test]]
name = "colorize_template"
path = "tests/colorize_template.rs"
[[test]]
name = "custom_styles"
path = "tests/custom_styles.rs"
[[test]]
name = "lock_errors"
path = "tests/lock_errors.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"
[dependencies.regex]
version = "1.12.2"
[dependencies.thiserror]
version = "2.0.18"