[package]
edition = "2024"
rust-version = "1.85"
name = "go_html_template"
version = "0.2.0"
build = false
include = [
"/src/**/*.rs",
"/examples/**/*.rs",
"/README.md",
"/translates/ja/README.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust crate with Go html/template-like API and behavior"
documentation = "https://docs.rs/go_html_template"
readme = "README.md"
keywords = [
"template",
"html",
"go",
"escape",
]
categories = [
"template-engine",
"web-programming",
]
license = "MIT"
repository = "https://github.com/finitefield-org/go-html-template"
[features]
default = []
web-rust = []
[lib]
name = "go_html_template"
path = "src/lib.rs"
[[bin]]
name = "compare_go_html_template"
path = "src/bin/compare_go_html_template.rs"
[[bin]]
name = "perf_attr_exec_split"
path = "src/bin/perf_attr_exec_split.rs"
[[bin]]
name = "perf_attr_single"
path = "src/bin/perf_attr_single.rs"
[[bin]]
name = "perf_more"
path = "src/bin/perf_more.rs"
[[bin]]
name = "perf_parse_attr_static"
path = "src/bin/perf_parse_attr_static.rs"
[[bin]]
name = "perf_parse_breakdown"
path = "src/bin/perf_parse_breakdown.rs"
[[bin]]
name = "perf_path_depth"
path = "src/bin/perf_path_depth.rs"
[[bin]]
name = "perf_range_assign"
path = "src/bin/perf_range_assign.rs"
[[bin]]
name = "perf_range_var_lookup"
path = "src/bin/perf_range_var_lookup.rs"
[[bin]]
name = "perf_reanalyze_delta"
path = "src/bin/perf_reanalyze_delta.rs"
[[bin]]
name = "perf_suite"
path = "src/bin/perf_suite.rs"
[[bin]]
name = "perf_template_call"
path = "src/bin/perf_template_call.rs"
[[bin]]
name = "perf_template_lookup"
path = "src/bin/perf_template_lookup.rs"
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"